Files
tunmnlu/task_2/others-answer/omsa-main/CS-6242-OAN/hw1/Q5/run.py
louiscklaw 9035c1312b update,
2025-02-01 02:09:32 +08:00

8 lines
280 B
Python

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