-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.env.example
More file actions
57 lines (41 loc) · 1.43 KB
/
Copy path.env.example
File metadata and controls
57 lines (41 loc) · 1.43 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
52
53
54
55
56
57
# ================================
# Database
# ================================
# Development database
# Neon branch: fieldly-dev
DATABASE_URL="postgresql://USER:PASSWORD@FIELDLY_DEV_HOST:PORT/DATABASE"
# Direct connection for Prisma migrations
# Use the direct/unpooled connection for the fieldly-dev branch
DIRECT_DATABASE_URL="postgresql://USER:PASSWORD@FIELDLY_DEV_DIRECT_HOST:PORT/DATABASE"
# Prisma shadow database
# Neon branch: fieldly-shadow
# Used only by Prisma Migrate during development
SHADOW_DATABASE_URL="postgresql://USER:PASSWORD@FIELDLY_SHADOW_HOST:PORT/DATABASE"
# ================================
# Authentication (Clerk)
# ================================
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=""
CLERK_SECRET_KEY=""
# Clerk Routes
NEXT_PUBLIC_CLERK_SIGN_IN_URL="/sign-in"
NEXT_PUBLIC_CLERK_SIGN_UP_URL="/sign-up"
NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL="/post-auth"
NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL="/post-auth"
# ================================
# Supabase (Storage / Optional Services)
# ================================
NEXT_PUBLIC_SUPABASE_URL=""
NEXT_PUBLIC_SUPABASE_ANON_KEY=""
SUPABASE_SERVICE_ROLE_KEY=""
# ================================
# Realtime (Pusher)
# ================================
NEXT_PUBLIC_PUSHER_KEY=""
NEXT_PUBLIC_PUSHER_CLUSTER=""
PUSHER_APP_ID=""
PUSHER_SECRET=""
# ================================
# Redis (Upstash)
# ================================
UPSTASH_REDIS_REST_URL=""
UPSTASH_REDIS_REST_TOKEN=""