12 lines
376 B
Python
12 lines
376 B
Python
|
|
#!/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)
|