Feat: update form, allow some fields to be optional; add dauerapp check; get mail setup working using env variables
Some checks failed
Docker Build (PR) / Build Docker image (pull_request) Has been cancelled

This commit is contained in:
2025-10-10 09:53:49 +02:00
parent ea9c13ae91
commit 5e37b57c9b
6 changed files with 73 additions and 20 deletions

View File

@@ -1,6 +1,5 @@
from app.main import app
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=5001)
# Run the FastAPI app defined in app/main.py as variable `app`
uvicorn.run("app.main:app", host="0.0.0.0", port=5001, reload=False)