Skip to content

Commit

Permalink
Merge pull request #168 from hummingbot/fix/deploy-issue
Browse files Browse the repository at this point in the history
fix / update CONFIG.py
  • Loading branch information
rapcmia authored Jul 29, 2024
2 parents b8c3a75 + 961f520 commit 22b3116
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 22b3116

Please sign in to comment.