-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (25 loc) · 829 Bytes
/
Copy path.env.example
File metadata and controls
33 lines (25 loc) · 829 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
# .env.example
# --- frontend (vite) ---
# clerk auth
VITE_CLERK_PUBLISHABLE_KEY=pk_test_...
# supabase (db)
VITE_SUPABASE_URL=https://your-project.supabase.co
VITE_SUPABASE_ANON_KEY=your-anon-key
# api url (local dev defaults to 3001)
VITE_API_URL=http://localhost:3001
# --- backend (api) ---
PORT=3001
CORS_ORIGINS=http://localhost:5173
# clerk backend (jwt verification)
CLERK_SECRET_KEY=sk_test_...
# supabase service role (server-only)
SUPABASE_SERVICE_ROLE_KEY=your-service-role-key
# cloudflare r2 (storage)
R2_ACCOUNT_ID=your-account-id
R2_ACCESS_KEY_ID=your-access-key
R2_SECRET_ACCESS_KEY=your-secret-key
R2_BUCKET_NAME=glob-models
# polar (billing + events)
POLAR_ACCESS_TOKEN=your-polar-token
POLAR_WEBHOOK_SECRET=your-webhook-secret
POLAR_SUCCESS_URL=http://localhost:5173/success?checkout_id={CHECKOUT_ID}