initial commit

This commit is contained in:
2025-05-20 12:11:13 -04:00
commit 5972c48c4f
4052 changed files with 807510 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
"""
This script runs the FlaskWebProject1 application using a development server.
"""
from os import environ
from FlaskWebProject1 import app
if __name__ == '__main__':
HOST = environ.get('SERVER_HOST', '0.0.0.0')
try:
PORT = int(environ.get('SERVER_PORT', '5555'))
except ValueError:
PORT = 5555
app.run(HOST, PORT)