mirror of https://gitee.com/anolis/sysom.git
21 lines
435 B
Python
21 lines
435 B
Python
# -*- coding: utf-8 -*- #
|
|
"""
|
|
Time 2023/11/29 10:08
|
|
Author: mingfeng (SunnyQjm)
|
|
Email mfeng@linux.alibaba.com
|
|
File settings.py
|
|
Description:
|
|
"""
|
|
import os
|
|
|
|
env = os.environ.get("env", "product")
|
|
|
|
|
|
if env == "develop":
|
|
from .develop import *
|
|
elif env == "testing":
|
|
from .testing import *
|
|
elif env == "product":
|
|
from .product import *
|
|
|
|
from .metric_settings import * |