-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
40 lines (33 loc) · 1017 Bytes
/
.env.example
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
# The project name.
NAME='FAR-EDGE Open API for Analytics'
# The environment.
# Allowed values: development, production, staging, test.
NODE_ENV=development
# The logging level.
# Allowed values: error, warn, info, debug.
LOG_LEVEL=debug
# The base URL where the REST API is exposed.
API_BASE_URL=http://localhost:4444/api
# The maximum request body size (in KB).
MAX_REQUEST_BODY_SIZE=100
# How to connect to MongoDB.
# The host to connect to.
MONGODB_HOST=localhost
# The port to connect to.
MONGODB_PORT=27017
# The database to connect to.
MONGODB_NAME=cloud-analytics-storage
# The user to connect with.
MONGODB_USER=
# The password to connect with.
MONGODB_PASSWORD=
# The number of connections in the connection pool.
MONGODB_POOL_SIZE=20
# How to connect to Kafka.
# The host to connect to.
KAFKA_BROKER_HOST=localhost
# The port to connect to.
KAFKA_BROKER_PORT=9092
# How to connect to the FAR-EDGE Model Repository.
# The base URL to the REST API.
MODEL_REPOSITORY_BASE_URL=http://localhost:8888/api