-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
51 lines (41 loc) · 1.54 KB
/
.env.example
File metadata and controls
51 lines (41 loc) · 1.54 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
43
44
45
46
47
48
49
50
51
# ===========================================
# CrewCircle Environment Variables
# ===========================================
# Copy this file to .env.local and fill in the values
# ===========================================
# CLERK AUTHENTICATION
# ===========================================
# Get from: https://dashboard.clerk.com
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=pk_test_...
CLERK_SECRET_KEY=sk_test_...
NEXT_PUBLIC_CLERK_SIGN_IN_URL=/login
NEXT_PUBLIC_CLERK_SIGN_UP_URL=/signup
NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL=/roster
NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL=/roster
# ===========================================
# NEON DATABASE
# ===========================================
# Get from: https://neondb.tech
DATABASE_URL=postgresql://user:password@host/database?sslmode=require
# ===========================================
# STRIPE CONFIGURATION
# ===========================================
# Get from: https://dashboard.stripe.com/apikeys
# Stripe Secret Key (backend only)
STRIPE_SECRET_KEY=sk_test_...
# Stripe Webhook Secret
STRIPE_WEBHOOK_SECRET=whsec_
# Stripe Publishable Key (safe to expose to frontend)
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=pk_test_...
# Stripe Price ID for Starter plan
STRIPE_PRICE_ID=price_...
# ===========================================
# APPLICATION SETTINGS
# ===========================================
# Your production site URL
NEXT_PUBLIC_SITE_URL=https://crewcircle.co
# ===========================================
# VERTCEL (auto-injected, do not edit)
# ===========================================
VERCEL_OIDC_TOKEN=
VERCEL=