forked from code100x/job-board
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
39 lines (34 loc) · 886 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
31
32
33
34
35
36
37
38
39
#
# Database
#
DATABASE_URL="postgres://postgres:password@localhost:5432/postgres"
#
# AUTH
#
NEXTAUTH_SECRET="koXrQGB5TFD4KALDX4kAvnQ5RHHvAOIzB"
NEXTAUTH_URL="http://localhost:3000"
#
# Bunny CDN
#
CDN_API_KEY=api-key
CDN_BASE_UPLOAD_URL=https://sg.storage.bunnycdn.com/job-board/assets
CDN_BASE_ACCESS_URL=https://job-board.b-cdn.net/assets
NEXT_PUBLIC_GOOGLE_MAPS_API_KEY=maps-api-key
#
# Email SMTP credentials
#
EMAIL_USER= # your email ex: [email protected]
EMAIL_PASSWORD=
EMAIL_SERVICE=gmail
EMAIL_HOST=smtp.gmail.com
EMAIL_PORT=587
#
# Google OAuth credentials
#
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
# go to https://lightcast.io/open-skills and signup to recieve your credentials
LIGHTCAST_CLIENT_ID=
LIGHTCAST_CLIENT_SECRET=
# To run the application in production environment / check the envs
# SKIP_ENV_CHECK=true npm run [replace with your script name]