CHOWDHARY Sandeep
Add Dockerfile and gunicorn for Flask deployment
4ef1815
raw
history blame contribute delete
235 Bytes
# Hugging Face Spaces entry point - Flask app
# This file is kept for compatibility, but Dockerfile uses gunicorn directly
from genetic_backend import app
if __name__ == "__main__":
app.run(host="0.0.0.0", port=7860, debug=False)