mirror of
https://github.com/thecyberlearn/netcop-ai.git
synced 2026-08-18 12:12:59 +00:00
Features: - Email-based user authentication with token auth - Stripe Checkout integration for wallet top-ups - n8n workflow triggering with automatic fee deduction ($0.10) - Comprehensive transaction and usage logging - Django Admin interface for monitoring - Rate limiting and security middleware - Production-ready deployment configuration - Modular settings (dev/prod environments) - UUID primary keys for enhanced security - Comprehensive test coverage 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
370 B
Plaintext
13 lines
370 B
Plaintext
SECRET_KEY=your-secret-key-here
|
|
DEBUG=True
|
|
DATABASE_URL=sqlite:///db.sqlite3
|
|
ALLOWED_HOSTS=localhost,127.0.0.1
|
|
|
|
STRIPE_PUBLISHABLE_KEY=pk_test_your_stripe_publishable_key
|
|
STRIPE_SECRET_KEY=sk_test_your_stripe_secret_key
|
|
STRIPE_WEBHOOK_SECRET=whsec_your_webhook_secret
|
|
|
|
N8N_WEBHOOK_URL=https://your-n8n-instance.com/webhook
|
|
N8N_API_KEY=your-n8n-api-key
|
|
|
|
WORKFLOW_FEE=0.10 |