ehsanulhaque92/multimodal-prescriptive-pdm
0
1"""2Main entry point to run the Flask web application.3"""4from app import app5 6if __name__ == '__main__':7 # Using port 5000 for local development. Render will use the port from the CMD.8 app.run(host='0.0.0.0', port=5000, debug=False)