quantumtaskai-caprover/dokploy.json
thecyberlearn f55da45794 🎉 Dokploy deployment working + comprehensive WARP.md
 DOKPLOY DEPLOYMENT FIXED:
- Issue was Django ALLOWED_HOSTS configuration, not Dokploy routing
- Container and port 3000 were working correctly
- Debug configuration resolved the routing issues

 PRODUCTION READY:
- Switch back to production Dockerfile (Dockerfile.dokploy)
- Proper environment variables with domain-specific ALLOWED_HOSTS
- Debug mode disabled for production

📋 COMPREHENSIVE WARP.md ADDED:
- Complete project overview and architecture
- Development commands and workflows
- Agent system architecture and configuration
- Deployment guides for both CapRover and Dokploy
- Troubleshooting section with Dokploy 404 fix
- Environment variables and security features
- File-based agent configuration system explained

The application is now successfully deployed and documented for future development.
2025-09-05 09:41:48 +05:30

17 lines
453 B
JSON

{
"name": "quantum-tasks-ai",
"type": "dockerfile",
"dockerfile": "./Dockerfile.dokploy",
"port": 3000,
"healthCheck": "/health/",
"buildArgs": {},
"buildOptions": ["--no-cache"],
"env": {
"PYTHONUNBUFFERED": "1",
"DEBUG": "false",
"SECRET_KEY": "production-key-change-this-123456789",
"ALLOWED_HOSTS": "website-quantumtaskai-wrczik-cc50ac-31-97-62-205.traefik.me,*",
"DOKPLOY_PROJECT_NAME": "quantum-tasks-ai"
}
}