-
Notifications
You must be signed in to change notification settings - Fork 1
/
env
35 lines (29 loc) · 807 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
## GATEWAY
GW_IMAGE="hummingbot/gateway:latest"
GW_PORT=15888
GW_DOCS_PORT=8080
GW_PASSPHRASE="GATEWAY_PASSPHRASE"
## Database
DB_IMAGE="postgres:13"
DB_NAME=postgres
DB_USER=postgres
DB_PASSWORD=postgres
## Hummingbot instances
HBOT_IMAGE="hummingbot/hummingbot:development"
# HBOT_IMAGE="hummingbot/hummingbot:latest"
HBOT_COMPOSE_FILE=./hbot.compose.yml
HBOT_MEM_LIMIT=1000
HBOT_MEM_RESERVATION=300
## Grafana
GRAFANA_IMAGE="grafana/grafana:9.3.2"
GRAFANA_DASHBOARD_PORT=3000
# TradingView MQTT Bridge
TV_BRIDGE_IMAGE="klpanagi/tradingview-mqtt-bridge:latest"
TV_BRIDGE_SEC_KEY="TradingView_SECURITY_KEY_HERE"
TV_BRIDGE_MQTT_TOPIC="tradingview/alerts"
TV_BRIDGE_WORKERS=2
# Streamlit App
DASHBOARD_IMAGE="hummingbot/dashboard:latest"
DASHBOARD_PORT=8501
# MQTT EMQX Broker
MQTT_EMQX_IMAGE="emqx:5"