ops-api/settings/common.py

30 lines
736 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import os.path
from common.conf import load_yaml
# 项目目录
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
CONFIG_FILE = os.path.join(os.path.dirname(BASE_DIR), "conf.yaml")
CONFIG: dict = load_yaml(CONFIG_FILE, raise_exception=True, default={})
VERSION = "v1"
INSTANCE = "9e5da0b3-565f-11ec-b095-18c04d9eb245"
# 请注意修改,涉及加密
SECRET_KEY = "_%77bE8b62Z!11eCbdF4/18C04@d9b24"
# API static token 允许请求的静态token
X_TOKEN_SET = (
"51ab21fa323a11eca1af000c2993d583", #
)
# 跨服spid集合
CROSS_SPID_SET = (
"000", "111", "222", "333", "444"
)
# session 从请求头中获取ops1 中的命名如:
# jiggry:1:chenzuoqing:089dbbae5bec11ec97c3525400e547a1
SESSION_PREFIX = "jiggry:1"