python3 -m pip install --user virtualenv
python3 -m venv env
source env/bin/activate
pip install -r requirements.txt
python3 run.py
docker build -t pave_the_way_image .
docker run --name pave-the-way-api -it -p 5050:5000 -d pave_the_way_image
Our api implements the builder pattern, as we use varius scrapers and AutoML to create a payload to send to the user
This API contains slack integration (slack folder), a CRUD to create a user (user folder) and an integration test for our search endpoint (search folder)