Spaces:
Sleeping
Sleeping
File size: 411 Bytes
4430ebb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
#!/bin/bash
# Exit on error
set -e
echo "Starting Akompta Backend Setup..."
# Apply database migrations
echo "Applying database migrations..."
python manage.py migrate --noinput
# Collect static files
echo "Collecting static files..."
python manage.py collectstatic --noinput
# Start Gunicorn
echo "Starting Gunicorn..."
exec gunicorn --bind 0.0.0.0:7860 --workers 3 --timeout 120 Akompta.wsgi:application
|