Laurenc Kaefer
ADD: wsgi loading env
72bfe98
raw
history blame contribute delete
157 Bytes
from dotenv import load_dotenv
from backend.main import api
# Load environment variables from .env file
load_dotenv()
# single callable WSGI app
app = api