mirror of
https://github.com/thecyberlearn/quantumtaskai-caprover.git
synced 2026-08-18 07:52:55 +00:00
- Remove port mapping (ports: 3000:8000) - Use expose: 8000 instead - lets Dokploy handle networking - No more port conflicts with host system - Dokploy reverse proxy will connect to exposed port 8000 |
||
|---|---|---|
| .claude/agents | ||
| .github | ||
| agents | ||
| authentication | ||
| core | ||
| netcop_hub | ||
| static | ||
| templates | ||
| wallet | ||
| .dockerignore | ||
| .env.dokploy | ||
| .env.example | ||
| .env.neon | ||
| .gitignore | ||
| CLAUDE.md | ||
| docker-compose.yml | ||
| Dockerfile | ||
| DOKPLOY_DEPLOYMENT.md | ||
| DOKPLOY_SETUP_GUIDE.md | ||
| generate_env.py | ||
| generate_neon_env.py | ||
| manage.py | ||
| NEON_DOKPLOY_SUMMARY.md | ||
| nginx.conf | ||
| README.md | ||
| requirements-dev.txt | ||
| requirements.txt | ||
| WARP.md | ||
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