Files
fastapi-best-architecture/backend/core/path_conf.py
T

25 lines
692 B
Python
Raw 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.
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
from pathlib import Path
# 获取项目根目录
# 或使用绝对路径,指到backend目录为止,例如windowsBasePath = D:\git_project\fastapi_mysql\backend
BasePath = Path(__file__).resolve().parent.parent
# alembic 迁移文件存放路径
ALEMBIC_VERSION_DIR = os.path.join(BasePath, 'alembic', 'versions')
# 日志文件路径
LOG_DIR = os.path.join(BasePath, 'log')
# 离线 IP 数据库路径
IP2REGION_XDB = os.path.join(BasePath, 'static', 'ip2region.xdb')
# 挂载静态目录
STATIC_DIR = os.path.join(BasePath, 'static')
# jinja2 模版文件路径
JINJA2_TEMPLATE_DIR = os.path.join(BasePath, 'templates')