Fix CORS: Load .env file in main.py
Some checks failed
CI / Frontend Lint & Type Check (push) Has been cancelled
CI / Frontend Build (push) Has been cancelled
CI / Backend Lint (push) Has been cancelled
CI / Backend Tests (push) Has been cancelled
CI / Docker Build (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
Deploy / Build & Push Images (push) Has been cancelled
Deploy / Deploy to Server (push) Has been cancelled
Deploy / Notify (push) Has been cancelled

- Added dotenv load_dotenv() at startup to ensure ALLOWED_ORIGINS env var is loaded
- This fixes CORS errors when accessing from https://pounce.ch
This commit is contained in:
2025-12-09 08:21:58 +01:00
parent db8cc399ef
commit c11d34f21e

View File

@ -2,6 +2,10 @@
import logging
import os
from contextlib import asynccontextmanager
from dotenv import load_dotenv
# Load .env file before anything else
load_dotenv()
from fastapi import FastAPI, Request, status
from fastapi.middleware.cors import CORSMiddleware