forked from nilssen98/bachelor-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.example
30 lines (25 loc) · 936 Bytes
/
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
# When adding additional env variables, the schema in /env/schema.mjs should be updated accordingly
# Prisma
DATABASE_URL=
NODE_ENV=
# NextAuth
# You can generate the secret via 'openssl rand -base64 32' on Linux
# More info: https://next-auth.js.org/configuration/options#secret
# NEXTAUTH_SECRET=
# The URL of the site that will be used by NextAuth and as a base for the openAPI endpoint
NEXTAUTH_URL=http://localhost:3000
# Google
# The client id and secret can be obtained from https://console.developers.google.com/apis/credentials
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
# Email Server
# You can use https://sendgrid.com, https://mailtrap.io or gmail
EMAIL_SERVER_USER=username
EMAIL_SERVER_PASSWORD=password
EMAIL_SERVER_HOST=smtp.example.com
EMAIL_SERVER_PORT=587
# Github
# The client id and secret can be obtained from https://github.com/settings/applications/new
GITHUB_ID=
GITHUB_SECRET=