quantumtaskai-caprover/dokploy.debug.json
thecyberlearn 98cc088518 Fix Dokploy deployment 404 errors
- Updated Dockerfile.dokploy with proper startup script
- Added start-dokploy.sh for database migrations and health checks
- Enhanced dokploy.json with required environment variables
- Added debug Dockerfile for troubleshooting (Dockerfile.dokploy.debug)
- Added debug config (dokploy.debug.json) for testing
- Fixed static file collection and gunicorn configuration
- Improved error handling and logging for deployment issues
2025-09-05 09:22:06 +05:30

16 lines
350 B
JSON

{
"name": "quantum-tasks-ai-debug",
"type": "dockerfile",
"dockerfile": "./Dockerfile.dokploy.debug",
"port": 3000,
"healthCheck": "/health/",
"buildArgs": {},
"buildOptions": ["--no-cache"],
"env": {
"PYTHONUNBUFFERED": "1",
"DEBUG": "true",
"SECRET_KEY": "debug-key-change-in-production",
"ALLOWED_HOSTS": "*"
}
}