init commit

This commit is contained in:
2026-01-26 15:08:24 -06:00
commit 67225a725a
33 changed files with 3350 additions and 0 deletions

14
run.py Executable file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env python3
"""Convenience script to run the weather alerts application."""
import sys
from pathlib import Path
# Add the project root to the Python path
project_root = Path(__file__).parent
sys.path.insert(0, str(project_root))
from app.main import main
if __name__ == "__main__":
sys.exit(main())