mirror of
https://github.com/thecyberlearn/quantum-ai.git
synced 2026-08-18 07:52:59 +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>
9 lines
362 B
Python
9 lines
362 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('create-checkout/', views.create_checkout_session, name='create_checkout_session'),
|
|
path('webhook/', views.stripe_webhook, name='stripe_webhook'),
|
|
path('success/', views.payment_success, name='payment_success'),
|
|
path('cancel/', views.payment_cancel, name='payment_cancel'),
|
|
] |