oneuptime/install.sh

49 lines
2.3 KiB
Bash
Raw Normal View History

2022-11-08 15:24:58 +00:00
#!/usr/bin/env bash
2020-02-13 21:48:38 +00:00
2022-11-08 15:24:58 +00:00
set -e
2019-08-02 12:56:16 +00:00
2022-11-08 15:24:58 +00:00
bash preinstall.sh
2022-11-10 11:39:06 +00:00
# Pull latest changes
git pull
2022-12-31 08:39:55 +00:00
sudo docker compose pull
2022-11-10 11:39:06 +00:00
2022-12-29 13:45:35 +00:00
# Create database if it does not exists
2022-12-31 09:13:30 +00:00
sudo docker compose up -d postgres && sleep 30 && sudo docker compose exec postgres psql postgresql://$DATABASE_USERNAME:$DATABASE_PASSWORD@localhost:5432/postgres -c 'CREATE DATABASE oneuptimedb' || echo "Database created"
2022-12-29 13:45:35 +00:00
2022-11-10 11:39:06 +00:00
# echo "Checking if async migrations are up to date"
2022-12-07 07:49:18 +00:00
# sudo -E docker compose run init
2022-11-10 11:30:29 +00:00
2022-11-08 19:10:14 +00:00
npm run start
2022-11-08 15:24:58 +00:00
echo "We will need to wait ~5-10 minutes for things to settle down, migrations to finish, and TLS certs to be issued"
echo ""
echo "⏳ Waiting for OneUptime to boot (this will take a few minutes)"
bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' localhost/api/status)" != "200" ]]; do sleep 5; done'
2022-12-29 17:14:29 +00:00
echo "Progress 1/10"
2022-11-08 15:24:58 +00:00
bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' localhost/dashboard/status)" != "200" ]]; do sleep 5; done'
2022-12-29 17:14:29 +00:00
echo "Progress 2/10"
bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' localhost/file/status)" != "200" ]]; do sleep 5; done'
echo "Progress 3/10"
2022-11-08 15:24:58 +00:00
bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' localhost/staus-page/status)" != "200" ]]; do sleep 5; done'
2022-12-29 17:14:29 +00:00
echo "Progress 4/10"
bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' localhost/status)" != "200" ]]; do sleep 5; done'
echo "Progress 5/10"
bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' localhost/accounts/status)" != "200" ]]; do sleep 5; done'
echo "Progress 6/10"
bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' localhost/mail/status)" != "200" ]]; do sleep 5; done'
echo "Progress 7/10"
bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' localhost/workers/status)" != "200" ]]; do sleep 5; done'
echo "Progress 8/10"
bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' localhost/identity/status)" != "200" ]]; do sleep 5; done'
echo "Progress 9/10"
2022-11-08 15:24:58 +00:00
echo "⌛️ OneUptime is up!"
echo ""
echo "🎉🎉🎉 Done! 🎉🎉🎉"
echo "We would like to hear your feedback to make this product better for you and for other users, please email us at hello@oneuptime.com."
echo " - If you notice a bug, we will fix it for you."
echo " - If you need a feature, we will add that to the roadmap and let you know the estimated time to ship."
echo "We would love to hear your feedback. Email: hello@oneuptime.com"