-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
29 lines (25 loc) · 1.34 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
# FIXME: Configure environment variables for your project
# For security reason, don't push secret key in your git repo.
# Append .local to the environement files to prevent your secret key from being commited to Git.
# Hosting
# Replace by your domain name
NEXT_PUBLIC_APP_URL=http://localhost:3000
# Database
ANALYZE=false
NEXTAUTH_URL=http://localhost:3000
MONGODB_URI=mongodb://localhost:27017/nextjs-mongodb
REDIS_URL=redis://localhost:6379
TURBO_TELEMETRY_DISABLED=1 # Disable Turbo telemetry
NEXT_TELEMETRY_DISABLED=1 # Disable Next.js telemetry
UPSTASH_REDIS_REST_TOKEN=token
UPSTASH_REDIS_REST_URL=https://inviting-viper-44415.upstash.io
UPSTASH_REDIS_REST_BASE_KEY_PREFIX=local:app:
# NEXT_PUBLIC_SENTRY_DSN=https://[email protected]/4507686275317840
######## [BEGIN] SENSITIVE DATA ######## For security reason, don't update the following variables (secret key) directly in this file.
######## Please create a new file named `.env.local`, all environment files ending with `.local` won't be tracked by Git.
######## After creating the file, you can add the following variables.
# Generate a random string using this command openssl rand -base64 32
NEXTAUTH_SECRET="secret" # Added by `npx auth secret`. Read more: https://cli.authjs.dev
SENTRY_AUTH_TOKEN=
# LOGTAIL_SOURCE_TOKEN=
######## [END] SENSITIVE DATA