File size: 369 Bytes
cf8b861
 
 
 
 
 
 
 
 
4fa7b40
 
 
 
cf8b861
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

# Exit immediately if a command exits with a non-zero status.
set -e

# Apply database migrations
echo "Applying database migrations..."
python manage.py migrate

# Create admin user
echo "Creating admin user..."
python manage.py create_admin

# Start Gunicorn server
echo "Starting Gunicorn server..."
gunicorn --bind 0.0.0.0:7860 feedback.wsgi:application