Boilerplate FastAPI & Dockerfile + NGINX

This commit is contained in:
2025-09-22 17:58:16 +01:00
parent f3fbed5298
commit bf600b8e42
35 changed files with 650 additions and 0 deletions

13
app/core/config.py Normal file
View File

@@ -0,0 +1,13 @@
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
PROJECT_NAME: str = "Keywarden"
API_V1_STR: str = "/api/v1"
SECRET_KEY: str
ACCESS_TOKEN_EXPIRE_MINUTES: int = 30
POSTGRES_DSN: str # e.g. postgresql+asyncpg://user:pass@db:5432/keywarden
OIDC_ISSUER: str | None = None
OIDC_CLIENT_ID: str | None = None
OIDC_CLIENT_SECRET: str | None = None
settings = Settings()

17
app/core/security.py Normal file
View File

@@ -0,0 +1,17 @@
from datetime import datetime, timedelta, timezone
from jose import jwt
from passlib.hash import argon2
from app.core.config import settings
ALGO = "HS256"
def create_access_token(sub: str, minutes: int | None = None) -> str:
expire = datetime.now(tz=timezone.utc) + timedelta(minutes=minutes or settings.ACCESS_TOKEN_EXPIRE_MINUTES)
to_encode = {"sub": sub, "exp": expire}
return jwt.encode(to_encode, settings.SECRET_KEY, algorithm=ALGO)
def verify_password(password: str, hashed: str) -> bool:
return argon2.verify(password, hashed)
def hash_password(password: str) -> str:
return argon2.hash(password)