Files

10 lines
208 B
Bash
Raw Permalink Normal View History

2025-06-11 17:40:17 +01:00
#!/bin/bash
# Create logs directory if it doesn't exist
mkdir -p logs
2025-06-11 22:07:25 +01:00
# Activate virtual environment
source venv/bin/activate
2025-06-11 17:40:17 +01:00
# Start Gunicorn with the configuration
gunicorn -c gunicorn_config.py app:app