-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
29 lines (25 loc) · 1 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
# In the readme there's an explanation of how to setup yout .env file
# When adding additional env variables, the schema in /env/schema.mjs should be updated accordingly
# Prisma
#
# PROD
# DATABASE_URL='mysql://aaaaaaaaaa:pscale_aaaaaaaaaa@aws-eu-west-2.connect.psdb.cloud/aaaaaaaaaa?sslaccept=strict'
# NEXT_PUBLIC_DATABASE_ENV='production'
#
# DEV
DATABASE_URL='mysql://aaaaaaaaaa:pscale_aaaaaaaaaa@aws-eu-west-2.connect.psdb.cloud/aaaaaaaaaa?sslaccept=strict'
NEXT_PUBLIC_DATABASE_ENV='test'
# Next Auth
# You can generate the secret via 'openssl rand -base64 32' on Linux
# More info: https://next-auth.js.org/configuration/options#secret
NEXTAUTH_SECRET='aaaaaaaaaa'
NEXTAUTH_URL=http://localhost:3000
# Next Auth Providers
DISCORD_CLIENT_ID='aaaaaaaaaa'
DISCORD_CLIENT_SECRET='aaaaaaaaaa'
GOOGLE_CLIENT_ID='aaaaaaaaaa.apps.googleusercontent.com'
GOOGLE_CLIENT_SECRET='aaaaaaaaaa'
FACEBOOK_CLIENT_ID='aaaaaaaaaa'
FACEBOOK_CLIENT_SECRET='aaaaaaaaaa'
GITHUB_CLIENT_ID='aaaaaaaaaa'
GITHUB_CLIENT_SECRET='aaaaaaaaaa'