mirror of
https://github.com/AppFlowy-IO/AppFlowy-Cloud.git
synced 2026-03-13 10:09:56 +08:00
* chore: rename folder * chore: add script to remove redis stream * chore: add script to remove redis stream * chore: fix ci
17 lines
270 B
Bash
Executable File
17 lines
270 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cd "$(dirname "$0")"
|
|
set -e
|
|
|
|
git clone https://github.com/supabase/gotrue.git
|
|
cp gotrue.env.docker gotrue/.env.docker
|
|
cd gotrue
|
|
|
|
make dev &
|
|
|
|
while true; do
|
|
curl localhost:9999/health && break
|
|
echo "waiting for gotrue to be ready..."
|
|
sleep 1
|
|
done
|