7 lines
151 B
Bash
7 lines
151 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# Create logs directory if it doesn't exist
|
||
|
|
mkdir -p logs
|
||
|
|
|
||
|
|
# Start Gunicorn with the configuration
|
||
|
|
gunicorn -c gunicorn_config.py app:app
|