quantum-ai/apps/core/urls.py
Claude 3fc5f01309 Initial Django project setup with working homepage
- Complete Django project structure with apps/ organization
- Working homepage with exact Next.js recreation (1039 lines)
- User authentication system with wallet balance
- Agent system with processors and models
- Stripe payment integration setup
- All Django migrations and URL routing
- Comprehensive .gitignore file
- Homepage loads successfully (HTTP 200)

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-08 16:30:56 +05:30

18 lines
761 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('', views.homepage, name='homepage'),
path('marketplace/', views.marketplace, name='marketplace'),
path('pricing/', views.pricing, name='pricing'),
path('debug/', views.debug_page, name='debug'),
path('reset-password/', views.reset_password, name='reset_password'),
path('agent/<slug:slug>/', views.agent_detail, name='agent_detail'),
path('agent/<slug:slug>/process/', views.process_agent, name='process_agent'),
path('profile/', views.profile, name='profile'),
# API endpoints
path('api/wallet/balance/', views.check_wallet_balance, name='api_wallet_balance'),
path('api/chat/<slug:slug>/', views.chat_message, name='api_chat_message'),
]