You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 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.
3
-
# DIRECT_DATABASE_URL does not need to be set locally if you are not running database migrations.
4
-
# See https://www.prisma.io/docs/guides/performance-and-optimization/connection-management/configure-pg-bouncer#prisma-migrate-and-pgbouncer-workaround for more details
1
+
########## Prisma ##########
2
+
## Required in all environments.
3
+
##
4
+
## In production, DATABASE_URL uses a connection pooler, so we need to separately set DIRECT_DATABASE_URL
5
+
## because Prisma Migrate requires a direct connection to the database.
6
+
## See https://www.prisma.io/docs/guides/performance-and-optimization/connection-management/configure-pg-bouncer#prisma-migrate-and-pgbouncer-workaround for more details
7
+
##
8
+
## For development, set DIRECT_DATABASE_URL to the same value as DATABASE_URL.
5
9
DATABASE_URL=
6
10
DIRECT_DATABASE_URL=
7
11
PLATFORM_DATABASE_URL=
8
12
9
-
# Next Auth
13
+
14
+
########## NextAuth ##########
15
+
## Required in all environments.
16
+
##
17
+
## NEXTAUTH_URL is the base URL of the website
18
+
## (e.g. if running locally on port 3000, NEXTAUTH_URL=http://localhost:3000).
10
19
NEXTAUTH_URL=
11
20
NEXTAUTH_SECRET=
21
+
22
+
23
+
########## Provider's ##########
24
+
## Only one provider required for development.
25
+
## All providers required in produciton.
26
+
12
27
# Google Provider
13
28
GOOGLE_CLIENT_ID=
14
29
GOOGLE_CLIENT_SECRET=
30
+
15
31
# Next Auth Discord Provider
16
32
DISCORD_CLIENT_ID=
17
-
DISCORD_CLIENT_SECRET=-
18
-
#Facebook provider
33
+
DISCORD_CLIENT_SECRET=
34
+
35
+
# Facebook provider
19
36
FACEBOOK_CLIENT_ID=
20
37
FACEBOOK_CLIENT_SECRET=
21
38
39
+
40
+
########## Nodemailer ##########
41
+
## Only required in production.
42
+
22
43
# Email Server
23
44
EMAIL_SERVER_HOST=
24
45
EMAIL_SERVER_PORT=
25
46
EMAIL_SERVER_USER=
26
47
EMAIL_SERVER_PASSWORD=
27
48
EMAIL_FROM=
28
49
29
-
# DEGREE VALIDATOR
30
-
VALIDATOR=
31
50
51
+
########## Degree validator ##########
52
+
## Required in all environments.
53
+
NEXT_PUBLIC_VALIDATOR=
54
+
55
+
56
+
########## Node ##########
57
+
## Should be set to "development" in development and "production" in production.
32
58
NODE_ENV=
33
59
34
-
# Umami: self-hosted analytics service
60
+
61
+
########## Umami ##########
62
+
## Umami: self-hosted analytics service
63
+
## Required only in production.
35
64
NEXT_PUBLIC_UMAMI_URL=
36
65
NEXT_PUBLIC_UMAMI_WEBSITE_ID=
37
66
67
+
68
+
########## Sentry ##########
69
+
## Sentry: error tracking service
70
+
## Not required in any environments.
71
+
## If not set, defaults to "https://edb9e327f9024e7599eae859bad9be47@o4504918397353984.ingest.sentry.io/4504924302409728"
0 commit comments