Files
email_alerts/run.py
T

12 lines
376 B
Python
Raw Normal View History

2025-08-05 22:29:54 +01:00
#!/usr/bin/env python3
"""
Flask Email Alerts System Runner
"""
from app import app
if __name__ == '__main__':
print("🚀 Starting Email Alerts System...")
print("📧 Web interface available at: http://localhost:5000")
print("⚙️ Settings available at: http://localhost:5000/settings")
print("=" * 50)
app.run(debug=True, host='0.0.0.0', port=5000)