Files
quality_app/py_app/run.py
Quality App Developer a8824d6f69 updated code
2025-12-25 22:45:22 +02:00

7 lines
126 B
Python

from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(debug=True, port=8781, host='0.0.0.0')