We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbd143d commit 4e57697Copy full SHA for 4e57697
1 file changed
server/projects/main/codedog/settings/open_env.py
@@ -22,6 +22,9 @@
22
# Debug模式
23
DEBUG = True if os.environ.get("MAIN_DEBUG_MODE") == "true" else False
24
25
+# 代码库默认使用https
26
+HTTPS_CLONE_FLAG = True if os.environ.get("HTTPS_CLONE_FLAG") == "true" else False
27
+
28
ALLOWED_HOSTS = ["*"]
29
30
# 管理员列表
0 commit comments