Files
hatchet/sdks/python/hot-reload.sh
2025-03-11 14:57:13 -04:00

10 lines
148 B
Bash
Executable File

#!/bin/sh
if [ -z "$1" ]; then
script="simple"
else
script="$1"
fi
watchmedo auto-restart --recursive --patterns="*.py" -- poetry run $script