Go to file
thecyberlearn 200e8015e5 Clean up unused files and reduce codebase size
Remove 10 unused files including standalone HTML, old templates, unused CSS, and Docker Compose configuration. Keep only files actively used by the Django application for CapRover deployment.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-06 08:36:05 +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 Fix groq initialization by using lazy loading 2025-09-05 08:51:50 +05:30
authentication Temporarily disable django-ratelimit to fix deployment 2025-09-05 03:07:23 +05:30
core Fix django-ratelimit imports in all view files 2025-09-05 08:40:13 +05:30
docs Complete project standardization and cleanup 2025-09-04 13:54:30 +05:30
netcop_hub Refactor to use environment variables instead of hardcoded values 2025-09-05 10:33:31 +05:30
scripts Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
static Clean up unused files and reduce codebase size 2025-09-06 08:36:05 +05:30
templates Clean up unused files and reduce codebase size 2025-09-06 08:36:05 +05:30
tests Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +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.example Add Dokploy deployment configuration 2025-09-05 02:40:02 +05:30
.env.example Add Coolify deployment configuration 2025-09-05 19:47:24 +05:30
.env.production.template Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
.gitignore Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
.railway.env.example Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
build.sh Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
captain-definition 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
coolify-deploy.md Add Coolify deployment configuration 2025-09-05 19:47:24 +05:30
debug_middleware.py Add comprehensive Django debug logging for 404 troubleshooting 2025-09-05 09:33:25 +05:30
debug_settings.py Add comprehensive Django debug logging for 404 troubleshooting 2025-09-05 09:33:25 +05:30
deploy-dokploy.sh Refactor to use environment variables instead of hardcoded values 2025-09-05 10:33:31 +05:30
DEPLOYMENT_GUIDE.md Complete project standardization and cleanup 2025-09-04 13:54:30 +05:30
Dockerfile Add Coolify deployment configuration 2025-09-05 19:47:24 +05:30
Dockerfile.captain Complete project standardization and cleanup 2025-09-04 13:54:30 +05:30
Dockerfile.dokploy 🔒 Fix HTTPS configuration for Dokploy deployment 2025-09-05 09:44:21 +05:30
Dockerfile.dokploy.debug Add comprehensive Django debug logging for 404 troubleshooting 2025-09-05 09:33:25 +05:30
Dockerfile.simple-test Fix Dokploy routing issues - Django app is running, 404 is routing problem 2025-09-05 09:27:28 +05:30
Dockerfile.test Add debug configuration for Dokploy 404 troubleshooting 2025-09-05 09:24:49 +05:30
dokploy.debug.json Fix Dokploy deployment 404 errors 2025-09-05 09:22:06 +05:30
dokploy.json Refactor to use environment variables instead of hardcoded values 2025-09-05 10:33:31 +05:30
manage.py Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
production_https_settings.py 🔒 Fix HTTPS configuration for Dokploy deployment 2025-09-05 09:44:21 +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
run_dev.sh Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
start-dokploy.sh Fix Dokploy bad gateway issue 2025-09-05 10:10:02 +05:30
start.sh Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
WARP.md 🎉 Dokploy deployment working + comprehensive WARP.md 2025-09-05 09:41:48 +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