-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (21 loc) · 780 Bytes
/
Copy path.env.example
File metadata and controls
31 lines (21 loc) · 780 Bytes
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
DEFAULT_SERVICE_PORT=8080
DISCOVERY_SERVICE_NAME=discovery-server
DISCOVERY_SERVICE_PORT=9001
DISCOVERY_SERVICE_EUREKA_INTERNAL_URL=http://localhost:${DEFAULT_SERVICE_PORT}/eureka
DISCOVERY_SERVICE_EUREKA_URL=http://${DISCOVERY_SERVICE_NAME}:${DEFAULT_SERVICE_PORT}/eureka
CONFIG_SERVICE_NAME=config-server
CONFIG_SERVICE_PORT=9002
API_GATEWAT_NAME=api-gateway
API_GATEWAT_PORT=80
EMPLOYEE_SERVICE_NAME=employee-service
EMPLOYEE_SERVICE_PORT=8081
DEPARTMENT_SERVICE_NAME=department-service
DEPARTMENT_SERVICE_PORT=8082
ORGANIZATION_SERVICE_NAME=organization-service
ORGANIZATION_SERVICE_PORT=8083
MONGO_INITDB_ROOT_USERNAME=admin
MONGO_INITDB_ROOT_PASSWORD=secret
MONGO_NAME=mongo-db
ZIPKIN_PORT=9411
ZIPKIN_NAME=zipkin
ZIPKIN_BASE_URL=http:${ZIPKIN_NAME}:${ZIPKIN_PORT}