This commit is contained in:
louiscklaw
2025-01-31 22:17:25 +08:00
parent cdc3678990
commit 3688f9ee24
100 changed files with 65454 additions and 0 deletions

7
tunmnlu/task_1/Q5/run.py Normal file
View File

@@ -0,0 +1,7 @@
""" run.py - Run the Flask app """
from flaskapp import app
if __name__ == '__main__':
# Tells Flask to run, accessible from the specified host/port pair. Note
# that the routes are loaded because of the import above.
app.run(host='127.0.0.1', port=3001, debug=True)