mirror of https://gitee.com/anolis/sysom.git
33 lines
1.2 KiB
Python
33 lines
1.2 KiB
Python
# -*- coding: utf-8 -*- #
|
|
"""
|
|
Time 2023/12/04 17:53
|
|
Author: mingfeng (SunnyQjm)
|
|
Email mfeng@linux.alibaba.com
|
|
File common.py
|
|
Description:
|
|
"""
|
|
from pathlib import Path
|
|
from sysom_utils import ConfigParser, SysomFramework
|
|
|
|
BASE_DIR = Path(__file__).resolve().parent.parent
|
|
|
|
##################################################################
|
|
# Load yaml config first
|
|
##################################################################
|
|
YAML_GLOBAL_CONFIG_PATH = f"{BASE_DIR.parent.parent}/conf/config.yml"
|
|
YAML_SERVICE_CONFIG_PATH = f"{BASE_DIR}/config.yml"
|
|
|
|
YAML_CONFIG = ConfigParser(YAML_GLOBAL_CONFIG_PATH, YAML_SERVICE_CONFIG_PATH)
|
|
|
|
mysql_config = YAML_CONFIG.get_server_config().db.mysql
|
|
service_config = YAML_CONFIG.get_service_config()
|
|
|
|
SysomFramework.init(YAML_CONFIG)
|
|
|
|
##################################################################
|
|
# fastapi config
|
|
##################################################################
|
|
SQLALCHEMY_DATABASE_URL = (
|
|
f"{mysql_config.dialect}+{mysql_config.engine}://{mysql_config.user}:{mysql_config.password}@"
|
|
f"{mysql_config.host}:{mysql_config.port}/{mysql_config.database}"
|
|
) |