| push: | |
| git add . | |
| git commit -m "π" | |
| git push | |
| install: ## [DEVELOPMENT] Install the API dependencies | |
| virtualenv env; \ | |
| source env/bin/activate; \ | |
| pip install -r requirements.txt; \ | |
| pip install -r requirements-test.txt | |
| @echo "Done, run '\033[0;31msource env/bin/activate\033[0m' to activate the virtual environment" | |
| run: ## [DEVELOPMENT] Run the streamlit app | |
| streamlit run app.py |