Files
quality_recticel/py_app/run.py
Quality System Admin 1afd09b88b updated settings page
2025-10-22 21:39:21 +03:00

8 lines
244 B
Python
Executable File

from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(debug=True, port=8782, host='0.0.0.0') # Run on port 8782 for local testing
# In production, use Gunicorn with wsgi.py as the entry point with port 8781