-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
40 lines (32 loc) · 1.21 KB
/
.env.example
File metadata and controls
40 lines (32 loc) · 1.21 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
# ===========================================
# RepliMap Frontend Environment Variables
# ===========================================
# DO NOT COMMIT REAL SECRETS
# Copy this file to .env.local and fill in values
# -----------------------------
# Auth (Clerk)
# -----------------------------
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=pk_test_placeholder
CLERK_SECRET_KEY=sk_test_placeholder
# Clerk Custom Auth Pages
NEXT_PUBLIC_CLERK_SIGN_IN_URL=/sign-in
NEXT_PUBLIC_CLERK_SIGN_UP_URL=/sign-up
# Clerk Redirect After Auth
NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL=/dashboard
NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL=/dashboard
# -----------------------------
# Stripe
# -----------------------------
# Stripe API Keys (server-side only)
STRIPE_SECRET_KEY=sk_test_placeholder
# Stripe Publishable Key (client-side)
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=pk_test_placeholder
# Note: Price IDs are configured in src/config/pricing.ts
# The pricing config automatically uses Test IDs for Preview/Dev
# and Live IDs for Production (based on VERCEL_ENV)
# -----------------------------
# App URLs
# -----------------------------
NEXT_PUBLIC_APP_URL=http://localhost:3000
# Backend API URL (for license fetching)
NEXT_PUBLIC_API_URL=http://localhost:8787