Added Transaction

This commit is contained in:
Azeez Muibi
2025-04-11 09:01:27 +01:00
parent 075f953dbc
commit 9116d54b4f
14 changed files with 436 additions and 25 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/bin/sh
echo "Running DB migrations..."
flask db migrate -m "Migration on $(date)"
flask db upgrade
echo "Starting Gunicorn server..."
exec gunicorn -w 4 -b 0.0.0.0:5000 wsgi:wsgi_app