tmpl-fastapi/app/common.py

32 lines
564 B
Python
Raw Normal View History

2023-02-20 11:09:43 +03:00
import os
import secrets
from pathlib import Path
from fastapi.templating import Jinja2Templates
from pydantic import BaseSettings
2023-02-27 18:05:04 +03:00
# Directories
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
2023-02-27 18:05:04 +03:00
# Main configuration
2023-02-20 11:09:43 +03:00
class Settings(BaseSettings):
debug: bool = False
2023-02-20 11:09:43 +03:00
session_key: str = secrets.token_hex(32)
csrf_key: str = secrets.token_hex(32)
settings = Settings()
2023-02-19 15:19:18 +03:00
2023-02-27 18:05:04 +03:00
# Jinja templates handler
templates = Jinja2Templates(
2023-02-19 15:19:18 +03:00
directory=templates_dir,
)