Files
girlsday/Version1/runserver.py
Erik Thiele 20eacbb82f Version2
2026-04-12 15:59:19 +02:00

10 lines
215 B
Python

"""
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)