Pipenv GUIDE
- Python 3.9.5 Installed
- DB and DB Test Up and Running (See README_DOCKER)
- Pipenv Installed
export PIPENV_VENV_IN_PROJECT=1
pipenv check
pipenv sync --dev
pipenv run flask db upgrade
pipenv run flask run
Then,
- access 🚀 http://localhost:5000/api to access the API documentation
- access 🚀 http://localhost:5000/api/status to check the API statuses
- access 🚀 http://localhost:5000/api/news to list News
pipenv run pytest
pylint flask_cookie/**/*.py
black -l 88 --check flask_cookie/
Check the Makefile and run make help
where it has all commands above shortcuts and more...