This commit is contained in:
Niklas Müller 2023-10-11 19:51:35 +02:00
parent 0ee6440ea3
commit 52dc67adc1
8 changed files with 174 additions and 0 deletions

4
wsgi.py Normal file
View file

@ -0,0 +1,4 @@
from app import app # Import your Flask app from app.py
if __name__ == "__main__":
app.run()