-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (26 loc) · 944 Bytes
/
Copy path.env.example
File metadata and controls
33 lines (26 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Server Configuration
PORT=5000
NODE_ENV=production
# Database
DATABASE_URL=postgresql://postgres:password@localhost:5432/latex_generator
# Authentication
SESSION_SECRET=your_session_secret_here
# API Keys
OPENAI_API_KEY=your_openai_api_key_here
ANTHROPIC_API_KEY=your_anthropic_api_key_here
GROQ_API_KEY=your_groq_api_key_here
# Stripe Integration
STRIPE_SECRET_KEY=your_stripe_secret_key_here
STRIPE_WEBHOOK_SECRET=your_stripe_webhook_secret_here
# Stripe Price IDs
STRIPE_PRICE_TIER1_ID=price_tier1_id_here
STRIPE_PRICE_TIER2_ID=price_tier2_id_here
STRIPE_PRICE_TIER3_ID=price_tier3_id_here
STRIPE_PRICE_TIER4_ID=price_tier4_id_here
STRIPE_PRICE_TIER5_ID=price_tier5_id_here
STRIPE_PRICE_REFILL_PACK_ID=price_refill_pack_id_here
# Domain Configuration (for Production)
DOMAIN=https://your-domain.com
# Client-side Environment Variables (must start with VITE_)
VITE_API_BASE_URL=/api
VITE_STRIPE_PUBLIC_KEY=your_stripe_public_key_here