Skip to content

Commit

Permalink
update CONFIG.py
Browse files Browse the repository at this point in the history
The AUTH_SYSTEM_ENABLED environment variable set in the Deploy Docker Compose file was not being picked up by the config.py file. Made changes so that the environment variable is picked up
  • Loading branch information
david-hummingbot authored Jul 26, 2024
1 parent 907132e commit 961f520
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CONFIG.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
CERTIFIED_EXCHANGES = ["ascendex", "binance", "bybit", "gate.io", "hitbtc", "huobi", "kucoin", "okx", "gateway"]
CERTIFIED_STRATEGIES = ["xemm", "cross exchange market making", "pmm", "pure market making"]

AUTH_SYSTEM_ENABLED = os.getenv("AUTH_SYSTEM_ENABLED", False)
AUTH_SYSTEM_ENABLED = os.getenv("AUTH_SYSTEM_ENABLED", "False").lower() in ("true", "1", "t")

BACKEND_API_HOST = os.getenv("BACKEND_API_HOST", "127.0.0.1")
BACKEND_API_PORT = os.getenv("BACKEND_API_PORT", 8000)

0 comments on commit 961f520

Please sign in to comment.