/dinnercore

the server for dinnerapp

Primary LanguagePythonMIT LicenseMIT

#dinnerCore

How to run code

Running the core

python manage.py runserver # it will run with the debug option

Running the app - after a change to DB model (assuming you made the change)

python manage.py db migrate
python manage.py db upgrade
python manage.py runserver

Running the app - after a change to DB model (you did not make the change)

python manage.py db upgrade
python manage.py runserver