-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
55 lines (36 loc) · 1.01 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
43
44
45
46
47
48
49
50
51
52
53
54
55
# === General ===
# database connection string
DATABASE_URL="mysql://user:password@localhost:3306/database"
# the directory to upload images into
# ignored if AWS variables set
UPLOAD_DIR=./uploads
# === Admin Authentication ===
# https://console.developers.google.com/apis/credentials
# site public url
NEXTAUTH_URL=
# google auth application keys
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
# list of comma-separated to allow
# leave blank to fall back to auth application settings
AUTHORIZED_EMAILS=
# === STRIPE ===
# https://dashboard.stripe.com/apikeys
NEXT_PUBLIC_STRIPE_PUBLIC_KEY=
STRIPE_SECRET_KEY=
# === AWS ===
# Set these to use AWS S3 storage instead of local storage
# this includes static assets.
# These purposefully have non-standard names
# to avoid conflict with Vercel.
AWS_S3_ACCESS_KEY_ID=
AWS_S3_SECRET_ACCESS_KEY=
AWS_S3_REGION=
AWS_S3_BUCKET_NAME=
NEXT_PUBLIC_CDN_URL=
# === Sentry ===
SENTRY_ORG=
SENTRY_PROJECT=
SENTRY_AUTH_TOKEN=
# === Google Analytics ===
NEXT_PUBLIC_GOOGLE_ANALYTICS=