mirror of
https://github.com/thecyberlearn/quantum-ai-v2.git
synced 2026-08-18 07:52:58 +00:00
- 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>
18 lines
761 B
Python
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'),
|
|
]
|