Go to file
thecyberlearn 2e3de9d9d0 Simplify navbar by removing links to deleted pages
Remove Home and AI Digital Branding links from navbar since those pages now redirect to marketplace. Update logo link to also point directly to marketplace for consistency.

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-06 09:11:57 +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 missing template references in core views 2025-09-06 09:09:33 +05:30
netcop_hub Refactor to use environment variables instead of hardcoded values 2025-09-05 10:33:31 +05:30
static Clean up unused files and reduce codebase size 2025-09-06 08:36:05 +05:30
templates Simplify navbar by removing links to deleted pages 2025-09-06 09:11:57 +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.example Add Coolify deployment configuration 2025-09-05 19:47:24 +05:30
.gitignore 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
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
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 groq version compatibility issue 2025-09-05 08:48:36 +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