Go to file
Claude 402324c03e 🌐 Update domain configurations for www.quantumtaskai.com
- Add www.quantumtaskai.com to ALLOWED_HOSTS
- Update CSRF_TRUSTED_ORIGINS for both www and non-www domains
- Change SITE_URL to use production domain for emails
- Update Stripe fallback URLs to use www subdomain
- Change admin emails from netcop.ai to quantumtaskai.com
- Update management command URLs to production domain
- Add Email Writer agent to populate_agents script

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-27 10:10:46 +05:30
.github/workflows Claude Code Review workflow 2025-07-13 11:58:45 +05:30
agent_base 🌐 Update domain configurations for www.quantumtaskai.com 2025-07-27 10:10:46 +05:30
authentication 🔧 Fix email verification 'Not Found' error 2025-07-26 23:37:17 +05:30
core 🌐 Update domain configurations for www.quantumtaskai.com 2025-07-27 10:10:46 +05:30
data_analyzer 🔧 Fix wallet 500 error and error page alignment 2025-07-27 09:29:29 +05:30
docs 📚 Organize documentation and create comprehensive domain change guide 2025-07-27 09:10:35 +05:30
email_writer Rebrand platform from NetCop Hub to Quantum Tasks AI 2025-07-25 22:21:45 +05:30
five_whys_analyzer 🤖 Implement comprehensive N8N workflow management system 2025-07-26 09:31:20 +05:30
job_posting_generator 🤖 Implement comprehensive N8N workflow management system 2025-07-26 09:31:20 +05:30
netcop_hub 🌐 Update domain configurations for www.quantumtaskai.com 2025-07-27 10:10:46 +05:30
social_ads_generator 🤖 Implement comprehensive N8N workflow management system 2025-07-26 09:31:20 +05:30
static 🎨 Redesign pricing page: remove sidebar, single-row layout 2025-07-27 10:01:49 +05:30
templates 🎨 Redesign pricing page: remove sidebar, single-row layout 2025-07-27 10:01:49 +05:30
tests Rebrand platform from NetCop Hub to Quantum Tasks AI 2025-07-25 22:21:45 +05:30
wallet 🌐 Update domain configurations for www.quantumtaskai.com 2025-07-27 10:10:46 +05:30
weather_reporter Rebrand platform from NetCop Hub to Quantum Tasks AI 2025-07-25 22:21:45 +05:30
.env.example Implement comprehensive Django performance optimizations 2025-07-13 13:23:59 +05:30
.env.production.template Fix Railway health check with improved timeout and retry logic 2025-07-26 10:29:50 +05:30
.gitignore 🤖 Implement comprehensive N8N workflow management system 2025-07-26 09:31:20 +05:30
agent_template_prototype.html Add comprehensive agent creation system with template prototype 2025-07-25 02:34:46 +05:30
CLAUDE.md 📚 Organize documentation and create comprehensive domain change guide 2025-07-27 09:10:35 +05:30
deploy_n8n_workflows.sh 🤖 Implement comprehensive N8N workflow management system 2025-07-26 09:31:20 +05:30
manage_n8n_workflows.py 🤖 Implement comprehensive N8N workflow management system 2025-07-26 09:31:20 +05:30
manage.py Initial Django project setup with working homepage 2025-07-08 16:30:56 +05:30
railway.json 🔧 Auto-verify admin email during deployment 2025-07-26 23:39:47 +05:30
requirements-dev.txt Implement comprehensive Django performance optimizations 2025-07-13 13:23:59 +05:30
requirements.txt 🔒 CRITICAL: Implement comprehensive authentication security improvements 2025-07-26 01:53:05 +05:30
run_dev.sh Fix Railway static files serving with WhiteNoise 2025-07-12 10:38:44 +05:30
social_ads_generator_exact_ui.html social ad pages 2025-07-25 08:13:50 +05:30
social_ads_generator_exact.html social ad pages 2025-07-25 08:13:50 +05:30
social_ads_generator.html social ad pages 2025-07-25 08:13:50 +05:30

📚 Quantum Tasks AI Documentation

Welcome to the comprehensive documentation for Quantum Tasks AI - a Django-based AI agent marketplace platform.

🚀 Quick Start


📂 Documentation Structure

🛠️ Development

Documentation for local development and agent creation.

Document Description
Setup Guide Local development environment setup
Agent Creation Building new AI agents for the platform
Testing Guide Testing procedures and best practices

🚀 Deployment

Production deployment and configuration guides.

Document Description
Railway Deployment Complete Railway.app deployment guide
Domain Change Guide Step-by-step domain change instructions
Environment Variables Complete environment configuration reference

⚙️ Operations

System maintenance, troubleshooting, and operations.

Document Description
Database Management Database operations and maintenance
Troubleshooting Common issues and solutions
Maintenance System maintenance procedures

🏗️ Architecture Overview

Core Components:

  • 🌐 Django Application - Main web platform
  • 🗄️ PostgreSQL Database - User data and transactions
  • 🔄 Redis Cache - Session storage and performance
  • 🤖 AI Agents - Specialized AI tools for users
  • 💳 Stripe Integration - Payment processing
  • 📧 Email System - User notifications and verification

Agent Architecture:

  • API Agents - Direct API integration (e.g., Weather Reporter)
  • Webhook Agents - External N8N workflow processing (e.g., Data Analyzer)

📋 Essential Information

🔧 System Requirements

Development:

  • Python 3.8+
  • Django 5.2+
  • SQLite (default) or PostgreSQL
  • Redis (optional)

Production:

  • Railway.app account
  • PostgreSQL database
  • Redis cache
  • SMTP email service
  • Stripe account

🌍 Environment Types

Environment Database Cache Email Purpose
Local Dev SQLite Memory Console Development and testing
Railway Staging PostgreSQL Redis SMTP Pre-production testing
Railway Production PostgreSQL Redis SMTP Live application

🔗 Key URLs

Development:

  • Application: http://localhost:8000
  • Admin: http://localhost:8000/admin/
  • Health Check: http://localhost:8000/health/

Production:

  • Application: https://quantum-ai.up.railway.app
  • Admin: https://quantum-ai.up.railway.app/admin/
  • Health Check: https://quantum-ai.up.railway.app/health/

🚨 Emergency Procedures

Quick Fixes

Application Won't Start:

  1. Check Troubleshooting Guide
  2. Verify Environment Variables
  3. Test database connection: python manage.py check --database default

Domain Issues:

  1. Follow Domain Change Guide
  2. Update ALLOWED_HOSTS and CSRF_TRUSTED_ORIGINS
  3. Test with health check endpoint

Database Problems:

  1. See Database Management
  2. Check Railway PostgreSQL service status
  3. Verify DATABASE_URL environment variable

Support Commands

# Check system health
python manage.py check --deploy

# Test database connection
python manage.py check_db

# Create admin user
python manage.py check_admin

# Test email functionality
python manage.py shell
>>> from django.core.mail import send_mail
>>> send_mail('Test', 'Message', 'from@example.com', ['to@example.com'])

🔍 Finding Information

📖 By Task

What do you want to do? Go to
Set up local development Setup Guide
Deploy to production Railway Deployment
Change domain/URL Domain Change Guide
Configure environment Environment Variables
Create new AI agent Agent Creation
Fix database issues Database Management
Solve common problems Troubleshooting

📖 By Component

Component Documentation
Django App Setup Guide, Railway Deployment
Database Database Management, Environment Variables
AI Agents Agent Creation
Email System Environment Variables, Troubleshooting
Payments Environment Variables

🆘 Getting Help

Documentation Issues

  • 📝 Found outdated information? Check if there's a newer version
  • 🔍 Can't find what you need? Check the Troubleshooting Guide
  • 📧 Still stuck? Review error logs and environment configuration

Development Questions

Production Issues


📅 Documentation Updates

This documentation is updated regularly. Key sections:

  • Environment Variables - Updated with new integrations
  • Deployment Guides - Updated for new Railway features
  • Troubleshooting - Updated with new common issues
  • Agent Creation - Updated with new agent types

Last Major Update: December 2024
Current Version: Django 5.2, Python 3.8+, Railway.app deployment


🎯 Pro Tip: Bookmark this page and the Quick Start section for fast access to essential guides!