CoolFace
Apppublic

ehsanulhaque92/multimodal-prescriptive-pdm

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
run.py8 linesDownload Raw Back to root
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)