mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
a6e4b537fe
* chore(contributing): add startup * init * cleanup docker file * local * compose works * markdowns * add gateway start on readme * readme done * finish mds * rename/delete compose files * correct docker compose file name * fix links, update contribute, split build/readme into separate files in /guides, add zitadel startup * fix(docker compose): allow .keys folder to not exist * update md's * use docker-compose instead of docker compose as --profile gets ignored * write a message if create key * copy openapi statik.go * explain how to connect in quickstart * Apply suggestions from code review Co-authored-by: Livio Amstutz <livio.a@gmail.com> * sremove subscription service from env.json * Delete caos_local.sh moved to build/local/local.env Co-authored-by: Livio Amstutz <livio.a@gmail.com>
38 lines
2.3 KiB
Bash
Executable File
38 lines
2.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# ------------------------------
|
|
# prints a message as soon as
|
|
# ZITADEL is ready
|
|
# ------------------------------
|
|
|
|
be_status=""
|
|
fe_status=""
|
|
|
|
while [[ $be_status -ne 200 || $fe_status -ne 200 ]]; do
|
|
sleep 5
|
|
be_status=$(curl -s -o /dev/null -I -w "%{http_code}" host.docker.internal:${BE_PORT}/clientID)
|
|
fe_status=$(curl -s -o /dev/null -I -w "%{http_code}" host.docker.internal:${FE_PORT}/assets/environment.json)
|
|
echo "backend (${be_status}) or frontend (${fe_status}) not ready yet"
|
|
done
|
|
|
|
echo -e "++=======================================================================================++
|
|
|| ||
|
|
|| ZZZZZZZZZZZZ II TTTTTTTTTTTT AAAA DDDDDD EEEEEEEEEE LL ||
|
|
|| ZZ II TT AA AA DD DD EE LL ||
|
|
|| ZZ II TT AA AA DD DD EE LL ||
|
|
|| ZZ II TT AA AA DD DD EEEEEEEE LL ||
|
|
|| ZZ II TT AAAAAAAAAAAA DD DD EE LL ||
|
|
|| ZZ II TT AA AA DD DD EE LL ||
|
|
|| ZZZZZZZZZZZZ II TT AA AA DDDDDD EEEEEEEEEE LLLLLLLLLL ||
|
|
|| ||
|
|
|| ||
|
|
|| SSSSSSSSSS TTTTTTTTTTTT AAAA RRRRRRRR TTTTTTTTTTTT EEEEEEEEEE DDDDDD ||
|
|
|| SS TT AA AA RR RR TT EE DD DD ||
|
|
|| SS TT AA AA RR RR TT EE DD DD ||
|
|
|| SSSSSS TT AA AA RRRRRRRR TT EEEEEEEE DD DD ||
|
|
|| SS TT AAAAAAAAAAAA RRRR TT EE DD DD ||
|
|
|| SS TT AA AA RR RR TT EE DD DD ||
|
|
|| SSSSSSSSSS TT AA AA RR RR TT EEEEEEEEEE DDDDDD ||
|
|
|| ||
|
|
++=======================================================================================++"
|