Diabetes / app.py
Naveen-2007's picture
Initial deploy: Diabetes Risk Predictor with Enhanced Chatbot
048f639
"""
Diabetes Health Predictor - HuggingFace Spaces Entry Point
This file is specifically for HuggingFace Spaces deployment
"""
# Import the Flask app from flask_app.py
from flask_app import app
# HuggingFace Spaces uses port 7860 by default
if __name__ == '__main__':
import os
port = int(os.environ.get('PORT', 7860))
app.run(debug=False, host='0.0.0.0', port=port)