Skip to content

Commit 22b3116

Browse files
authored
Merge pull request #168 from hummingbot/fix/deploy-issue
fix / update CONFIG.py
2 parents b8c3a75 + 961f520 commit 22b3116

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CONFIG.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
CERTIFIED_EXCHANGES = ["ascendex", "binance", "bybit", "gate.io", "hitbtc", "huobi", "kucoin", "okx", "gateway"]
1818
CERTIFIED_STRATEGIES = ["xemm", "cross exchange market making", "pmm", "pure market making"]
1919

20-
AUTH_SYSTEM_ENABLED = os.getenv("AUTH_SYSTEM_ENABLED", False)
20+
AUTH_SYSTEM_ENABLED = os.getenv("AUTH_SYSTEM_ENABLED", "False").lower() in ("true", "1", "t")
2121

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

0 commit comments

Comments
 (0)