forked from miotech/kun-scheduler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
46 lines (33 loc) · 722 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
43
44
45
46
#####################
# User Config
#####################
# Timezone
TZ=Asia/Shanghai
# Version
KUN_VERSION=0.7.0-rc1
# Port
LISTEN_PORT=8080
#####################
# System Config
#####################
IMAGE_REMOTE_ORG=miotechoss/
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DB=kun
DB_PG_IP=kun-postgres
DB_PG_PORT=5432
DB_PG_USERNAME=${POSTGRES_USER}
DB_PG_PASSWORD=${POSTGRES_PASSWORD}
DB_NEO4J_IP=kun-neo4j
DB_NEO4J_PORT=7687
DB_REDIS_IP=kun-redis
DB_REDIS_PORT=6379
APP_CONFIG_ENV=local
SPRING_PROFILES_ACTIVE=${APP_CONFIG_ENV}
SECURITY_HOST=kun-security
SECURITY_PORT=8100
KUN_INFRA_HOST=kun-infra
KUN_INFRA_PORT=8081
WORKFLOW_RPC_SERVICE_PORT=10201
KUN_APP_HOST=kun-app
KUN_APP_PORT=8082