This is a boilerplate for Flask apps.
- Flask
- Flask-SQLAlchemy
- Pytest
In the future Flask-Login and Flask-WTForms might be added if i find the time.
You will need to set up a virtualenv, activate it and install the requirements.:
virtualenv .env
. ./.env/bin/activate
pip install -r requirements.txt
Running the development server is as easy as:
./server.py
Tests are written using py.test, run them using:
py.test tests/ -v