mirror of
https://github.com/sartography/uva-covid19-testing-communicator.git
synced 2025-02-22 20:08:23 +00:00
6 lines
144 B
Python
6 lines
144 B
Python
from communicator import app
|
|
|
|
if __name__ == "__main__":
|
|
flask_port = app.config['FLASK_PORT']
|
|
app.run(host='0.0.0.0', port=flask_port)
|