Skip to content

Latest commit

 

History

History
56 lines (43 loc) · 758 Bytes

README.md

File metadata and controls

56 lines (43 loc) · 758 Bytes

STX Lunch

Lunch ordering application.

Requirements

  • PostresSQL
  • uWSGI

Install

python3 bootstrap-buildout.py
./bin/buildout -vN
ln -s /opt/python/3.4.2/bin/uwsgi uwsgi

DB initialization

dev instance

./bin/flask-ctl init_db --debug
./bin/flask-ctl db_migrate stamp --debug

prod instance

./bin/flask-ctl init_db
./bin/flask-ctl db_migrate stamp

Running

dev instance

./bin/flask-ctl debug

prod instance

./bin/flask-ctl serve start
./bin/flask-ctl serve stop
./bin/flask-ctl serve restart

Update

DB migrate

dev instance

./bin/flask-ctl db_migrate upgrade --debug

prod instance

./bin/flask-ctl db_migrate upgrade