MRE/run.py

7 lines
114 B
Python
Raw Normal View History

from app import create_app
2025-03-14 20:31:32 +00:00
app = create_app()
2025-03-14 20:31:32 +00:00
if __name__ == '__main__':
2025-04-06 23:31:14 +00:00
app.run(port=8080, host='0.0.0.0')