Go to file
thecyberlearn 648bd0e68e Fix health check endpoint - resolve 301 redirect issues
- 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
2025-09-06 11:07:18 +05:30
.claude/agents Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
.github Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
agents Restore brand presence analyzer agents 2025-09-06 08:58:30 +05:30
authentication Temporarily disable django-ratelimit to fix deployment 2025-09-05 03:07:23 +05:30
core Fix health check endpoint - resolve 301 redirect issues 2025-09-06 11:07:18 +05:30
netcop_hub Add Dokploy deployment configuration with Neon database 2025-09-06 10:18:24 +05:30
static Clean up unused files and reduce codebase size 2025-09-06 08:36:05 +05:30
templates Add Home link pointing to external website 2025-09-06 09:15:04 +05:30
wallet Fix undefined cache_user_data decorator in wallet views 2025-09-05 08:42:57 +05:30
.dockerignore Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
.env.dokploy Add Dokploy deployment configuration with Neon database 2025-09-06 10:18:24 +05:30
.env.example Add Coolify deployment configuration 2025-09-05 19:47:24 +05:30
.env.neon Add Dokploy deployment configuration with Neon database 2025-09-06 10:18:24 +05:30
.gitignore Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
CLAUDE.md Major simplification: Remove over-engineered features for basic CapRover deployment 2025-09-04 11:00:56 +05:30
docker-compose.yml Fix port allocation issue - use expose instead of ports 2025-09-06 10:30:49 +05:30
Dockerfile Fix Dokploy deployment issues 2025-09-06 10:25:28 +05:30
DOKPLOY_DEPLOYMENT.md Add Dokploy deployment configuration with Neon database 2025-09-06 10:18:24 +05:30
DOKPLOY_SETUP_GUIDE.md Add Dokploy deployment configuration with Neon database 2025-09-06 10:18:24 +05:30
generate_env.py Add Dokploy deployment configuration with Neon database 2025-09-06 10:18:24 +05:30
generate_neon_env.py Add Dokploy deployment configuration with Neon database 2025-09-06 10:18:24 +05:30
manage.py Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
NEON_DOKPLOY_SUMMARY.md Add Dokploy deployment configuration with Neon database 2025-09-06 10:18:24 +05:30
nginx.conf Add Dokploy deployment configuration with Neon database 2025-09-06 10:18:24 +05:30
README.md Complete project standardization and cleanup 2025-09-04 13:54:30 +05:30
requirements-dev.txt Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
requirements.txt Fix groq version compatibility issue 2025-09-05 08:48:36 +05:30
WARP.md Add Dokploy deployment configuration with Neon database 2025-09-06 10:18:24 +05:30

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

  1. Upload to CapRover: Use captain-definition-simple
  2. Set Environment Variables:
    SECRET_KEY=your-secret-key
    DEBUG=false
    ALLOWED_HOSTS=yourdomain.com
    DATABASE_URL=postgres://user:pass@host/db
    
  3. Deploy: Force build in CapRover dashboard

Project Structure

  • agents/ - AI agent marketplace
  • authentication/ - User registration/login
  • wallet/ - Basic Stripe payments
  • core/ - 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 guide
  • CLAUDE.md - Technical architecture and setup details