mirror of
https://github.com/thecyberlearn/quantumtaskai-caprover.git
synced 2026-08-18 11:12:55 +00:00
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>
60 lines
1.3 KiB
Markdown
60 lines
1.3 KiB
Markdown
# Quantum Tasks AI - Simple CapRover Deployment
|
|
|
|
A basic Django AI agent marketplace for CapRover deployment.
|
|
|
|
## Quick Start
|
|
|
|
```bash
|
|
# 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/`:
|
|
|
|
```json
|
|
{
|
|
"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 |