!34 修改默认环境为product

* 修改默认环境为product
This commit is contained in:
剑子仙机 2022-02-18 08:38:28 +00:00
parent 682c44b875
commit c533ae2d90
1 changed files with 2 additions and 2 deletions

View File

@ -1,13 +1,13 @@
import os
env = os.environ.get("env", "testing")
env = os.environ.get("env", "product")
if env == "develop":
from conf.develop import *
elif env == "testing":
from conf.testing import *
elif env == "produce":
elif env == "product":
from conf.product import *
# 跨域允许