-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy path.env.example
More file actions
64 lines (48 loc) · 1.58 KB
/
.env.example
File metadata and controls
64 lines (48 loc) · 1.58 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
58
59
60
61
62
63
64
########## Prisma ##########
## Required in all environments.
##
## In production, DATABASE_URL uses a connection pooler, so we need to separately set DIRECT_DATABASE_URL
## because Prisma Migrate requires a direct connection to the database.
## See https://www.prisma.io/docs/guides/performance-and-optimization/connection-management/configure-pg-bouncer#prisma-migrate-and-pgbouncer-workaround for more details
##
## For development, set DIRECT_DATABASE_URL to the same value as DATABASE_URL.
DATABASE_URL=
DIRECT_DATABASE_URL=
PLATFORM_DATABASE_URL=
########## NextAuth ##########
## Required in all environments.
##
## NEXTAUTH_URL is the base URL of the website
## (e.g. if running locally on port 3000, NEXTAUTH_URL=http://localhost:3000).
NEXTAUTH_URL=
NEXTAUTH_SECRET=
########## Provider's ##########
## Only one provider required for development.
## All providers required in produciton.
# Google Provider
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
# Next Auth Discord Provider
DISCORD_CLIENT_ID=
DISCORD_CLIENT_SECRET=
# Facebook provider
FACEBOOK_CLIENT_ID=
FACEBOOK_CLIENT_SECRET=
########## Nodemailer ##########
## Only required in production.
# Email Server
EMAIL_SERVER_HOST=
EMAIL_SERVER_PORT=
EMAIL_SERVER_USER=
EMAIL_SERVER_PASSWORD=
EMAIL_FROM=
########## Degree validator ##########
## Required in all environments.
NEXT_PUBLIC_VALIDATOR=
########## Node ##########
## Should be set to "development" in development and "production" in production.
NODE_ENV=
########## Sentry ##########
## Sentry: error tracking service
## Not required in any environments.
SENTRY_AUTH_TOKEN=