Go to file
thecyberlearn e7fef02176 Fix Dokploy Docker caching issue - force no-cache build
- Add "buildOptions": ["--no-cache"] to dokploy.json
- Remove temporary comment from requirements.txt
- Forces Dokploy to rebuild all layers and install django-ratelimit properly
- No changes to application code - works as-is on CapRover

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-05 03:16:25 +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 Complete project standardization and cleanup 2025-09-04 13:54:30 +05:30
authentication Temporarily disable django-ratelimit to fix deployment 2025-09-05 03:07:23 +05:30
core Major simplification: Remove over-engineered features for basic CapRover deployment 2025-09-04 11:00:56 +05:30
docs Complete project standardization and cleanup 2025-09-04 13:54:30 +05:30
netcop_hub Add Dokploy deployment configuration 2025-09-05 02:40:02 +05:30
scripts Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
static Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
templates Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
tests Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
wallet Complete project standardization and cleanup 2025-09-04 13:54:30 +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 Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +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
brandfind1.html Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
brandfind.html Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
brandfinderpro.html 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
DEPLOYMENT_GUIDE.md Complete project standardization and cleanup 2025-09-04 13:54:30 +05:30
Dockerfile.captain Complete project standardization and cleanup 2025-09-04 13:54:30 +05:30
Dockerfile.dokploy Add Dokploy deployment configuration 2025-09-05 02:40:02 +05:30
dokploy.json Fix Dokploy Docker caching issue - force no-cache build 2025-09-05 03:16:25 +05:30
manage.py Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +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 Dokploy Docker caching issue - force no-cache build 2025-09-05 03:16:25 +05:30
run_dev.sh Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
start.sh Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +05:30
tesla_brand_analysis_webpage_single_file_react.jsx Initial clean CapRover deployment - no secrets 2025-09-04 10:50:55 +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