Initial commit - Fire alarm management application

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-19 21:57:25 -05:00
commit 892ac3d23b
24 changed files with 4183 additions and 0 deletions

20
run.py Normal file
View File

@@ -0,0 +1,20 @@
#!/usr/bin/env python3
"""
Fire Alarm Management Application
Run this file to start the web server.
"""
from app import create_app
app = create_app()
if __name__ == '__main__':
print("\n" + "="*50)
print("Fire Alarm Management System")
print("="*50)
print("\nStarting server...")
print("Open http://localhost:5000 in your browser")
print("\nPress Ctrl+C to stop the server")
print("="*50 + "\n")
app.run(debug=True, host='0.0.0.0', port=5000)