quantum-ai-v3/railway.json
Claude e8ade314a6 🔧 Remove email verification system and update event URL
- Remove email_verified field from User model
- Delete EmailVerificationToken model and related views
- Update registration to auto-login users without verification
- Change event URL from /event-invitation/ to /event/
- Update Railway deployment configuration
- Remove email verification templates and URLs

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-16 12:35:26 +05:30

20 lines
583 B
JSON

{
"$schema": "https://railway.app/railway.schema.json",
"build": {
"builder": "NIXPACKS"
},
"deploy": {
"startCommand": "python manage.py migrate; python manage.py reset_admin; python manage.py collectstatic --noinput && gunicorn netcop_hub.wsgi:application --bind 0.0.0.0:$PORT --workers 1 --timeout 60",
"restartPolicyType": "ON_FAILURE",
"restartPolicyMaxRetries": 3
},
"environments": {
"production": {
"variables": {
"DEBUG": "False",
"DEPLOYMENT_ENVIRONMENT": "production",
"BRANCH_NAME": "main"
}
}
}
}