feat(config): load repo-root .env via python-dotenv
All checks were successful
python-syntax / syntax-check (push) Successful in 4s

This commit is contained in:
2026-04-05 20:05:11 +02:00
parent 683f2d5961
commit bb247aaad2
4 changed files with 15 additions and 0 deletions

View File

@@ -5,10 +5,13 @@ import time
import uuid
from typing import Literal, Optional
from dotenv import load_dotenv
from fastapi import Depends, FastAPI, Header, HTTPException, Response
from pydantic import BaseModel, Field, model_validator
load_dotenv(dotenv_path=".env", override=False)
app = FastAPI(title="clickthrough", version="0.1.0")