mirror of
https://github.com/thecyberlearn/quantumtaskai-caprover.git
synced 2026-08-18 05:32:55 +00:00
- Add missing redirect import in core/views.py - Remove broken AgentFileService dependency from health check - Clean up duplicate imports - Health check now returns HTTP 200 OK instead of 301 redirects - Fixes CapRover health check failures |
||
|---|---|---|
| .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