-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
42 lines (34 loc) · 1.06 KB
/
.env.example
File metadata and controls
42 lines (34 loc) · 1.06 KB
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
34
35
36
37
38
39
40
41
42
# Database
DATABASE_URL="postgresql://user:password@localhost:5432/ziwei_astrology?schema=public"
# NextAuth
AUTH_SECRET="generate-with-openssl-rand-base64-32"
AUTH_URL="http://localhost:3000"
# Google OAuth (optional)
AUTH_GOOGLE_ID=""
AUTH_GOOGLE_SECRET=""
# Anthropic (AI Chat)
ANTHROPIC_API_KEY=""
# Stripe
STRIPE_SECRET_KEY=""
STRIPE_PUBLISHABLE_KEY="“
STRIPE_WEBHOOK_SECRET=""
STRIPE_BASIC_MONTHLY_PRICE_ID=""
STRIPE_BASIC_ANNUAL_PRICE_ID=""
STRIPE_PREMIUM_MONTHLY_PRICE_ID=""
STRIPE_PREMIUM_ANNUAL_PRICE_ID=""
STRIPE_SIFU_MONTHLY_PRICE_ID=""
STRIPE_SIFU_ANNUAL_PRICE_ID=""
# Google Analytics (Get your ID at https://analytics.google.com)
NEXT_PUBLIC_GA_ID=""
# Site URL (for SEO metadata)
NEXT_PUBLIC_SITE_URL="https://ziweiastrology.ai"
# Reddit API (for reddit-post CLI tool)
# Register a "script" app at https://www.reddit.com/prefs/apps/
REDDIT_CLIENT_ID=""
REDDIT_CLIENT_SECRET=""
REDDIT_USERNAME=""
REDDIT_PASSWORD=""
REDDIT_USER_AGENT="ziweiastrology:v1.0.0 (by /u/YOUR_USERNAME)"
# Supabase (avatar storage)
NEXT_PUBLIC_SUPABASE_URL=""
SUPABASE_SERVICE_ROLE_KEY=""