A Flask-based front-end to connect to FB's graph API to tag pictures via https://github.com/samj1912/fbrecog/.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
You need docker, docker-compose, docker-machine to spin up the microservices.
Spin up the microservices:
docker-compose -f .\docker-compose-dev.yml up -d --build
Create a database:
docker-compose -f docker-compose-dev.yml run imgs-service python manage.py recreate_db
Tag faces in the images you put under services/imgs/project/examples/
docker-compose -f docker-compose-dev.yml run imgs-service python manage.py recognize_ex
Browse to localhost
and query a name through the form.
Explain how to run the automated tests for this system
Run all the unit tests via:
docker-compose -f docker-compose-dev.yml run imgs-service python manage.py test