test/custom-admin-ui #3

Merged
orion merged 673 commits from test/custom-admin-ui into master 2026-06-05 17:20:58 +08:00
Showing only changes of commit 4a63e7d354 - Show all commits
+4 -2
View File
@@ -4,7 +4,8 @@
# @Software: PyCharm
from pathlib import Path
data_root = Path('./data')
BASE_DIR = Path(__file__).resolve().parent.parent
data_root = BASE_DIR / 'data'
if not data_root.exists():
data_root.mkdir(parents=True, exist_ok=True)
env_path = data_root / '.env2'
@@ -78,4 +79,5 @@ class Settings:
def items(self):
return self.__dict__.items()
settings = Settings()
settings = Settings()