git clone this-repo
cd into-repo
pipenv shell
pipenv install
to install project dependencies.Manage.py contains the migration scripts. In order to perform migrations after model gets changed you must run the following commands
If first time running migration then run
python
from models import db
db.create_all()
python manage.py db migrate
python manage.py db upgrade