mirror of
https://github.com/thecyberlearn/quantumtaskai-caprover.git
synced 2026-08-18 21:32:56 +00:00
Complete Django AI agent marketplace with security optimizations and clean deployment documentation without any API keys or secrets. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
381 B
Bash
Executable File
13 lines
381 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Start script for Render deployment
|
|
|
|
set -o errexit # exit on error
|
|
|
|
echo "Running database migrations..."
|
|
python manage.py migrate
|
|
|
|
echo "Creating admin user if needed..."
|
|
python manage.py reset_admin --password=RenderTemp123! || true
|
|
|
|
echo "Starting gunicorn server..."
|
|
exec gunicorn netcop_hub.wsgi:application --bind 0.0.0.0:$PORT --workers 1 --timeout 60 |