first commit
This commit is contained in:
@@ -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)
|
||||
Reference in New Issue
Block a user