Preparar entorno virtual
$ pipenv --python="3.x"
$ pipenv shell
Instalar las librerias necesarias dentro del Pipfile
$ pipenv install
Comandos para la base de datos
$ python app.py db init
$ python app.py db migrate
$ python app.py db upgrade
Iniciar el servidor
$ python app.py runserver