blob: 9f6a220b2fd7f886d7eaa89c7ec883fb08d17341 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# Activate the virtual environment
poetry shell
# Run database migrations
flask db upgrade
exec gunicorn -b :80 --access-logfile - --error-logfile - annotate_change:app
|