This commit is contained in:
Erik Thiele
2026-04-12 15:59:19 +02:00
parent bbc75d5c98
commit 20eacbb82f
70 changed files with 53580 additions and 0 deletions

9
runserver.py Normal file
View File

@@ -0,0 +1,9 @@
"""
This script runs the GirlsDayPython application using a development server.
"""
from os import environ
from GirlsDayPython import app
if __name__ == '__main__':
app.run(host="0.0.0.0", port=5555)