vad_go / project_settings.py
HoneyTian's picture
update
382cf0c
raw
history blame contribute delete
573 Bytes
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import os
from pathlib import Path
from toolbox.os.environment import EnvironmentManager
project_path = os.path.abspath(os.path.dirname(__file__))
project_path = Path(project_path)
log_directory = project_path / "logs"
log_directory.mkdir(parents=True, exist_ok=True)
temp_directory = project_path / "temp"
temp_directory.mkdir(parents=True, exist_ok=True)
environment = EnvironmentManager(
path=os.path.join(project_path, "dotenv"),
env=os.environ.get("environment", "dev"),
)
if __name__ == '__main__':
pass