mirror of
https://github.com/thecyberlearn/quantumtaskai-caprover.git
synced 2026-08-18 08:52:57 +00:00
- 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
16 lines
350 B
JSON
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": "*"
|
|
}
|
|
}
|