Add project files.

This commit is contained in:
Pc
2025-04-08 20:10:48 +02:00
parent 7758a9abb8
commit 670f995df5
32 changed files with 26729 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
"""
This script runs the FlaskWebProject application using a development server.
"""
from os import environ
from FlaskWebProject import app
if __name__ == '__main__':
HOST = environ.get('SERVER_HOST', 'localhost')
try:
PORT = int(environ.get('SERVER_PORT', '5555'))
except ValueError:
PORT = 5555
app.run(HOST, PORT)