Initial commit: Email alerts application

This commit is contained in:
Iyeoluwa Akinrinola
2025-07-25 11:31:36 +01:00
commit adfb625ae9
6322 changed files with 2882826 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/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)