mirror of
https://github.com/thecyberlearn/quantumtaskai-caprover.git
synced 2026-08-18 07:52:55 +00:00
- Container and port 3000 are working (simple HTTP server test passed) - Issue is Django-specific routing, not Dokploy - Added debug middleware to log all incoming requests - Added debug_settings.py with enhanced logging and URL pattern display - Updated Dockerfile.dokploy.debug to use debug settings - Added proper ALLOWED_HOSTS with full domain - This will show us exactly which requests Django receives and how it responds |
||
|---|---|---|
| .claude/agents | ||
| .github | ||
| agents | ||
| authentication | ||
| core | ||
| docs | ||
| netcop_hub | ||
| scripts | ||
| static | ||
| templates | ||
| tests | ||
| wallet | ||
| .dockerignore | ||
| .env.dokploy.example | ||
| .env.example | ||
| .env.production.template | ||
| .gitignore | ||
| .railway.env.example | ||
| brandfind1.html | ||
| brandfind.html | ||
| brandfinderpro.html | ||
| build.sh | ||
| captain-definition | ||
| CLAUDE.md | ||
| debug_middleware.py | ||
| debug_settings.py | ||
| DEPLOYMENT_GUIDE.md | ||
| Dockerfile.captain | ||
| Dockerfile.dokploy | ||
| Dockerfile.dokploy.debug | ||
| Dockerfile.simple-test | ||
| Dockerfile.test | ||
| dokploy.debug.json | ||
| dokploy.json | ||
| manage.py | ||
| README.md | ||
| requirements-dev.txt | ||
| requirements.txt | ||
| run_dev.sh | ||
| start-dokploy.sh | ||
| start.sh | ||
| tesla_brand_analysis_webpage_single_file_react.jsx | ||
Quantum Tasks AI - Simple CapRover Deployment
A basic Django AI agent marketplace for CapRover deployment.
Quick Start
# Install dependencies
pip install -r requirements-simple.txt
# Run migrations
python manage.py migrate
# Create admin user
python manage.py createsuperuser
# Start development server
python manage.py runserver
CapRover Deployment
- Upload to CapRover: Use
captain-definition-simple - Set Environment Variables:
SECRET_KEY=your-secret-key DEBUG=false ALLOWED_HOSTS=yourdomain.com DATABASE_URL=postgres://user:pass@host/db - Deploy: Force build in CapRover dashboard
Project Structure
agents/- AI agent marketplaceauthentication/- User registration/loginwallet/- Basic Stripe paymentscore/- Homepage and utilities
Adding Agents
Add JSON files to agents/configs/agents/:
{
"name": "My Agent",
"category": "productivity",
"price": 5,
"description": "Simple agent description",
"webhook_url": "https://your-webhook.com",
"form_schema": {
"fields": [{"name": "input", "type": "text", "label": "Input"}]
}
}
Documentation
DEPLOYMENT_GUIDE.md- Complete CapRover deployment guideCLAUDE.md- Technical architecture and setup details