mirror of
https://github.com/AppFlowy-IO/AppFlowy-Cloud.git
synced 2025-04-19 03:24:42 -04:00
* chore: rename folder * chore: add script to remove redis stream * chore: add script to remove redis stream * chore: fix ci
16 lines
270 B
Bash
Executable file
16 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
|