-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.dev
45 lines (40 loc) · 883 Bytes
/
.env.dev
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
40
41
42
43
44
45
# Server Properties
MODE=DEV
NODE_ENV=dev
PORT=4000
DEBUG=true
# --------------------------
# Database properties
DB_NAME=hackathon
DB_HOST=localhost
DB_PORT=5432
DB_USERNAME=postgres
DB_PASSWORD=postgres
DB_LOGGING=false
DB_SYNCHRONIZE=false
DB_AUTOLOADENTITIES=true
# --------------------------
# Authorization Properties
JWT_SECRET=replaceit
ACCESS_TOKEN_VALIDITY_DAYS=
REFRESH_TOKEN_VALIDITY_DAYS=
RESET_PASSWORD_EXPIRATION_MINUTES=
TOKEN_ISSUER=
TOKEN_AUDIENCE=
# --------------------------
# Properties for API
API_GLOBAL_PREFIX=api
API_GLOBAL_VERSION=v1
# -------------------------
# Properties for Cloudinary/online file storage
CLOUDINARY_NAME=
CLOUDINARY_API_KEY=
CLOUDINARY_API_SECRET=
CLOUDINARY_IS_SECURE=true
# --------------------------
# Properties for emailer lib
SENDER_NAME=
SENDER_EMAIL=
EMAIL_AUTH_USERNAME=
EMAIL_AUTH_PASSWORD=
# -------------------------