SAGAR142's picture
Upload 24 files
f9d5960 verified
#!/bin/bash
# Apply database migrations
python manage.py migrate
# Collect static files
python manage.py collectstatic --noinput
# Start the Telegram Bot in the background
python manage.py run_telegram_bot &
# Start the Web Server in the foreground (so the container stays running)
exec gunicorn credit_card.wsgi:application --bind 0.0.0.0:7860 --timeout 120 --workers 2