mirror of
https://github.com/thecyberlearn/quantumtaskai-caprover.git
synced 2026-08-18 07:52:55 +00:00
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> |
||
|---|---|---|
| .claude/agents | ||
| .github | ||
| agents | ||
| authentication | ||
| core | ||
| netcop_hub | ||
| static | ||
| templates | ||
| wallet | ||
| .dockerignore | ||
| .env.example | ||
| .gitignore | ||
| captain-definition | ||
| CLAUDE.md | ||
| coolify-deploy.md | ||
| Dockerfile | ||
| Dockerfile.captain | ||
| manage.py | ||
| README.md | ||
| requirements-dev.txt | ||
| requirements.txt | ||
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
- Upload to CapRover: Use
captain-definition-simple - Set Environment Variables:
SECRET_KEY=your-secret-key DEBUG=false ALLOWED_HOSTS=yourdomain.com DATABASE_URL=postgres://user:pass@host/db - Deploy: Force build in CapRover dashboard
Project Structure
agents/- AI agent marketplaceauthentication/- User registration/loginwallet/- Basic Stripe paymentscore/- 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 guideCLAUDE.md- Technical architecture and setup details