Initial commit - Fire alarm management application
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
20
run.py
Normal file
20
run.py
Normal 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)
|
||||
Reference in New Issue
Block a user