-
Notifications
You must be signed in to change notification settings - Fork 0
/
.{demo}.env
30 lines (30 loc) · 1.25 KB
/
.{demo}.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
#==================================================================================
# environment parameter
#==================================================================================
# APIKEY := the apikey of this application which use for header of all requests.
# DB_HOST := database host url
# DB_NAME := database name
# DB_USER := username
# DB_PASS := password
# DB_PORT := port
# AI_SCHEMA := schema name of application framework
# MAIN_SCHEMA := schema name of retail platform
#----------------------------------------------------------------------------------
APIKEY='testpass'
DB_HOST='localhost'
DB_NAME='postgres'
DB_USER='postgres'
DB_PASS='P@ssW0rd'
DB_PORT='5432'
AI_SCHEMA='ai'
MAIN_SCHEMA='public'
SSH_FLAG='False'
#----------------------------------------------------------------------------------
# Optional for SSH
#----------------------------------------------------------------------------------
# SSH_FLAG := flag to be True if use SSH for local connection
# SSH_HOST := host of SSH
# SSH_USER := username
# SSH_PRIVATE_KEY := `.pem` filename that exists in config path `conf/<.pem>`
# SSH_PORT := port number of SSH
#==================================================================================