quantumtaskai-caprover/README.md
thecyberlearn 9261d73d4f Complete project standardization and cleanup
MAJOR CLEANUP:
- Remove ALL backup files and duplicate variants (*-simple, *.backup)
- Standardize requirements.txt to 11 essential dependencies (vs 24)
- Clean settings.py: remove middleware/cache/Redis dependencies
- Simplify Dockerfile.captain: essential features only
- Replace 2 deployment guides with 1 clean DEPLOYMENT_GUIDE.md
- Fix broken imports in authentication, agents, wallet modules

RESULT:
- One clean standard version of everything
- No more confusion between simple/complex variants
- Essential dependencies only
- Standard Django configuration
- Ready for straightforward CapRover deployment
- All imports working correctly

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-04 13:54:30 +05:30

1.3 KiB

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