A Flask App
# Create a virtual environment
$ python3 -m venv venv
# Enable it
$ source venv/bin/activate
# Install dependencies
$ pip install -r requirements.txt
# Run tests
$ nosetests -v
# Run with development server
$ FLASK_APP=run.py FLASK_ENV=development flask run
- Python Environment
- DB
- Travis-CI
- Heroku
Update heroku api_key
$ travis setup heroku --force
- Update this README using https://github.com/pallets/flask/blob/master/examples/tutorial/README.rst as a reference.