generated from pagevamp/copilot-custom-app-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
43 lines (34 loc) · 1.13 KB
/
.env.example
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
# --- Disable env warnings for nvim
# shellcheck disable=SC2034
# --- Project flags
NEXT_PUBLIC_ADVANCED_FEATURES_FLAG=
# --- Copilot SDK / API
# Generate an API key from the copilot dashboard that is usable in your app
COPILOT_API_KEY=
# Set as 'local' to work on test tokens, and 'production' to work on valid IU / client tokens
# COPILOT_ENV="local"
# --- Vercel
VERCEL_URL=localhost:3000
VERCEL_ENV=development
NEXT_PUBLIC_VERCEL_ENV=${VERCEL_ENV}
# --- Supabase Storage
BLOB_READ_WRITE_TOKEN=
NEXT_PUBLIC_SUPABASE_ANON_KEY=
NEXT_PUBLIC_SUPABASE_PROJECT_URL=
NEXT_PUBLIC_SUPABASE_BUCKET=
# --- DB
# Dev database
DATABASE_USER=
DATABASE_PASSWORD=
DATABASE_NAME=
DATABASE_PORT=
POSTGRES_PRISMA_URL=postgres://${DATABASE_USER}:${DATABASE_PASSWORD}@localhost:${DATABASE_PORT}/${DATABASE_NAME}
DIRECT_URL=postgres://${DATABASE_USER}:${DATABASE_PASSWORD}@localhost:${DATABASE_PORT}/${DATABASE_NAME}
DATABASE_URL=postgres://${DATABASE_USER}:${DATABASE_PASSWORD}@localhost:${DATABASE_PORT}/${DATABASE_NAME}
# Staging or prod - add DATABASE_URL and DIRECT_URL directly
DATABASE_URL=
DIRECT_URL=
# --- Sentry
NEXT_PUBLIC_SENTRY_DSN=
# --- CRON
CRON_SECRET=