-
Notifications
You must be signed in to change notification settings - Fork 65
/
.env
42 lines (37 loc) · 962 Bytes
/
.env
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
## App configuration ##
NODE_ENV=development
PORT=5000
SESSIONS_STORAGE=cache # cache or db
LOGS_ENABLED=true
## App information overrides ##
# By default, these are read from package.json #
#APP_VERSION=
APP_NAME=express-typescript-skeleton
#APP_DESCRIPTION=
#AUTHOR_NAME=
#AUTHOR_EMAIL=
#AUTHOR_WEBSITE=
## Docker configuration ##
# App configuration #
IMAGE_NAME=express-typescript-skeleton
EXTERNAL_PORT=5000
LOGS_VOLUME=../.docker/app/logs
# Database configuration #
DB_TYPE=postgresql
DB_HOST=localhost
DB_PORT=5432
DB_MANAGER_PORT=5001
DB_USER=mars-user
DB_PASSWORD=mars-password
DB_NAME=express-typescript-skeleton-db
DB_URL=postgresql://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME}?connect_timeout=300
DB_VOLUME=../.docker/db/data
# Cache configuration #
CACHE_HOST=localhost
CACHE_PORT=6379
CACHE_MANAGER_PORT=5002
CACHE_PASSWORD=mars-password
CACHE_DB=0
CACHE_VOLUME=../.docker/cache/data
# Container configuration
TZ=Europe/Madrid