- python3
- Flask
Python
# init the database
python manage.py db init
# apply the migration
python manage.py db migrate
# upgrade the db
python manage.py db upgrade
OR
#execute this
./setup.sh
#run ALL test
pytest
#run one test
pytest tests/filename
#run project heroku
git push heroku <branch-name>
#run local branch on heroku
git push heroku <branch-name>:master