blob: 9d50eef19cf756a54cd674bba71a10f976fe7194 (
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 :5000 --access-logfile - --error-logfile - annotate_change:app
|