chore: update doc and add pre-commit

This commit is contained in:
2025-03-11 10:45:26 -06:00
parent 354834fff7
commit 958d87bcae
4 changed files with 40 additions and 10 deletions

View File

@@ -19,12 +19,12 @@ follow_init_logs() {
echo "No initialization logs found."
return
fi
echo "Initialization is still in progress. Showing logs:"
echo "----------------------------------------"
tail -f /init.log &
tail_pid=$!
# Check every second if initialization has completed
while true; do
if [ -f "/init.status" ] && grep -q "INIT_COMPLETE=true" "/init.status"; then