Adventures in moving from Vancouver to Amsterdam.
Start the application locally using,
docker compose up
The site should be accessible at http://localhost:5000
.
Migrations are managed using the flask-migrate
extension. Migrations are stored in the migrations
directory. To automatically update migrations to reflect existing models, run,
flask db migrate -m "A brief, informative description"
Note that this only adds the migration to the previously mentioned directory. To run migrations, use,
flask db upgrade