first commit

This commit is contained in:
bolade
2025-08-05 22:29:54 +01:00
commit 974ffa6554
33 changed files with 3297 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)