Files
weather-alerts/run.py
2026-01-26 15:08:24 -06:00

15 lines
318 B
Python
Executable File

#!/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())