main.py
Entry point for the Flask application
from app import app
if __name__ == "__main__":
app.run(host="0.0.0.0", port=5000, debug=True)
Purpose:
- Imports the Flask app from app.py
- Runs the application on port 5000
- Enables debug mode for development
- Binds to all network interfaces (0.0.0.0)