forked from freeCodeCamp/chapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
24 lines (20 loc) · 833 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
DB_USER=postgres
DB_PASSWORD=password
DB_NAME=chapter
DB_URL=localhost
# If running a local setup make sure to set DB_PORT=5432
DB_PORT=54320
DATABASE_URL=postgres://${DB_USER}:${DB_PASSWORD}@${DB_URL}:${DB_PORT}/${DB_NAME}
# If your graphql server is not on localhost, NEXT_PUBLIC_APOLLO_SERVER must be
# set to the full url and port of the server e.g. https://example.com:5000
NEXT_PUBLIC_APOLLO_SERVER=
EMAIL_USERNAME=project.1
EMAIL_PASSWORD=secret.1
EMAIL_SERVICE=emailServicePlaceholder
EMAIL_HOST=localhost
# change this variable to at least 32 random characters
# to enforce 256-bit cryto security on Auth0's JsonWebToken
JWT_SECRET=SetThisTo32orMoreRandomCharacters
# When running remotely, this should be the full url of the landing page
CLIENT_LOCATION=http://localhost:3000