Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
wait-for-it.sh 172 Bytes
Copy Edit Raw Blame History
brzhang authored 2024-10-25 20:03 . feat: 去掉 supabase,切换到 prisma
#!/bin/sh
# wait-for-it.sh
set -e
host="$1"
shift
cmd="$@"
until nc -z "$host"; do
echo "Waiting for ${host}..."
sleep 1
done
echo "${host} is available"
exec $cmd
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化