Skip to content

Commit 0c9238a

Browse files
committed
(feat) disable auth by default
1 parent 982b15f commit 0c9238a

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", "True").lower() in ("true", "1", "t")
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)