tmpl-fastapi/app/common.py

38 lines
643 B
Python
Raw Normal View History

2023-02-20 11:09:43 +03:00
import os
import secrets
from pathlib import Path
2023-02-20 11:09:43 +03:00
from dotenv import load_dotenv
from fastapi.templating import Jinja2Templates
from pydantic import BaseSettings
2023-02-19 15:19:18 +03:00
file_dir = Path(__file__).parent
templates_dir = str(
file_dir.parent / 'templates'
)
static_dir = str(
file_dir.parent / 'static'
)
2023-02-20 11:09:43 +03:00
debug_env = str(
file_dir.parent / '.env_debug'
)
is_debug = bool(os.getenv('DEBUG'))
if is_debug:
load_dotenv(debug_env)
class Settings(BaseSettings):
session_key: str = secrets.token_hex(32)
csrf_key: str = secrets.token_hex(32)
settings = Settings()
2023-02-19 15:19:18 +03:00
templates = Jinja2Templates(
2023-02-19 15:19:18 +03:00
directory=templates_dir,
)