$ cp config.example.sh config.sh
$ cp gunicorn.example.conf gunicorn.conf
$ python3 -m venv venv
$ source venv/bin/activate
$ pip install -r requirements.txt
$ flask dbinit
-
config.sh
-
gunicorn.conf
$ source env/bin/activate
$ source config.sh
$ flask run
$ source env/bin/activate
$ source config.sh
$ gunicorn -c gunicorn.conf "app:create_app()"
Check for linter and tests
$ make check