refactor(docker): remove monitor.py references and adjust Dockerfile paths for clarity

This commit is contained in:
pacnpal
2025-01-29 09:34:34 -05:00
parent 31b66c6d65
commit 6baa26eb80
3 changed files with 2 additions and 11 deletions

View File

@@ -3,11 +3,5 @@ set -e
echo "[$(date '+%Y-%m-%d %H:%M:%S')] Starting SimpleGuardHome..."
# Verify the package is importable
if ! python3 -c "from simpleguardhome.main import app"; then
echo "Error: Failed to import SimpleGuardHome package"
exit 1
fi
# Start the application
exec python3 -m uvicorn simpleguardhome.main:app --host 0.0.0.0 --port 8000