oneuptime/preinstall.sh

167 lines
4.4 KiB
Bash
Raw Normal View History

2022-11-08 15:24:58 +00:00
#!/usr/bin/env bash
set -e
2022-11-08 16:22:19 +00:00
ONEUPTIME_SECRET=$(openssl rand -hex 12)
export ONEUPTIME_SECRET=$ONEUPTIME_SECRET
2022-11-08 15:24:58 +00:00
2022-11-08 16:22:19 +00:00
DATABASE_PASSWORD=$(openssl rand -hex 12)
export DATABASE_PASSWORD=$DATABASE_PASSWORD.
REDIS_PASSWORD=$(openssl rand -hex 12)
export REDIS_PASSWORD=$REDIS_PASSWORD
ENCRYPTION_SECRET=$(openssl rand -hex 12)
export ENCRYPTION_SECRET=$ENCRYPTION_SECRET
INTERNAL_SMTP_PASSWORD=$(openssl rand -hex 12)
export INTERNAL_SMTP_PASSWORD=$INTERNAL_SMTP_PASSWORD
2022-11-08 15:24:58 +00:00
# Talk to the user
2022-11-08 17:17:58 +00:00
echo "Welcome to the OneUptime 🟢 Runner"
2022-11-08 15:24:58 +00:00
echo ""
echo "⚠️ You really need 8gb or more of memory to run this stack ⚠️"
echo ""
echo ""
echo "Please enter your sudo password now:"
sudo echo ""
echo "Thanks! 🙏"
echo ""
echo "Ok! We'll take it from here 🚀"
echo "Making sure any stack that might exist is stopped"
# If docker-compose is installed and if docker-compose.yml is found then, stop the stack.
if [[ $(which docker-compose) ]]; then
2022-11-08 17:17:58 +00:00
if [ -f ./docker-compose.yml ]; then
sudo -E docker-compose -f docker-compose.yml stop || true
fi
2022-11-08 15:24:58 +00:00
fi
# If Mac
if [[ "$OSTYPE" == "darwin"* ]]; then
2022-11-08 17:17:58 +00:00
if [[ ! $(which brew) ]]; then
echo "Homebrew not installed. Please install homebrew and restart installer"
exit
fi
2022-11-08 15:24:58 +00:00
fi
# If linux
if [[ "$OSTYPE" != "darwin"* ]]; then
2022-11-08 17:17:58 +00:00
echo "Grabbing latest apt caches"
sudo apt update
2022-11-08 15:24:58 +00:00
fi
# clone oneuptime
echo "Installing OneUptime 🟢"
if [[ ! $(which git) ]]; then
2022-11-08 17:17:58 +00:00
if [[ "$OSTYPE" != "darwin"* ]]; then
sudo apt install -y git
fi
if [[ "$OSTYPE" == "darwin"* ]]; then
brew install git
fi
2022-11-08 15:24:58 +00:00
fi
GIT_REPO_URL=$(git config --get remote.origin.url)
2022-11-09 13:25:06 +00:00
if [[ $GIT_REPO_URL != *oneuptime* ]] # * is used for pattern matching
2022-11-08 15:24:58 +00:00
then
git clone https://github.com/OneUptime/oneuptime.git || true
cd oneuptime
fi
2022-11-09 13:43:42 +00:00
# if this script is not running in CI/CD
if [ -z "$CI_PIPELINE_ID" ]
then
2022-11-08 15:24:58 +00:00
# try to clone - if folder is already there pull latest for that branch
git pull
2022-11-09 13:43:42 +00:00
fi
2022-11-08 15:24:58 +00:00
2022-11-09 14:51:19 +00:00
cd ..
2022-11-08 15:24:58 +00:00
if [[ ! $(which node) && ! $(node --version) ]]; then
if [[ "$OSTYPE" != "darwin"* ]]; then
echo "Setting up NodeJS"
sudo apt-get install -y nodejs
sudo apt-get install -y npm
fi
if [[ "$OSTYPE" == "darwin"* ]]; then
brew install nodejs
fi
fi
2022-11-09 18:23:01 +00:00
if [[ ! $(which docker) && ! $(docker --version) ]]; then
echo "Setting up Docker"
sudo curl -sSL https://get.docker.com/ | sh
fi
# If docker still fails to install, then quit.
if [[ ! $(which docker) && ! $(docker --version) ]]; then
echo -e "Failed to install docker. Please install Docker manually here: https://docs.docker.com/install."
echo -e "Exiting the OneUptime installer."
exit
fi
# enable docker without sudo
sudo usermod -aG docker "${USER}" || true
if [[ ! $(which docker-compose) && ! $(docker-compose --version) ]]; then
mkdir -p /usr/local/lib/docker/cli-plugins
curl -SL https://github.com/docker/compose/releases/download/v2.12.2/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/lib/docker/cli-plugins
sudo chmod +x /usr/local/lib/docker/cli-plugins/docker-compose
docker compose version
fi
# If docker still fails to install, then quit.
if [[ ! $(which docker-compose) && ! $(docker-compose --version) ]]; then
echo -e "Failed to install docker-domcpose. Please install Docker Compose manually here: https://docs.docker.com/compose/install/linux/#install-the-plugin-manually."
echo -e "Exiting the OneUptime installer."
exit
fi
2022-11-09 18:34:16 +00:00
if [[ ! $(which gomplate) ]]; then
2022-11-09 18:35:13 +00:00
sudo curl -o /usr/local/bin/gomplate -sSL https://github.com/hairyhenderson/gomplate/releases/download/3.11.3/gomplate_$(uname -s)-$(uname -m)
2022-11-09 18:36:26 +00:00
sudo chmod 755 /usr/local/bin/gomplate
2022-11-09 18:34:16 +00:00
fi
2022-11-08 15:24:58 +00:00
2022-11-09 12:53:55 +00:00
if [[ ! $(which ts-node) ]]; then
sudo npm install -g ts-node
fi
2022-11-08 15:24:58 +00:00
cd oneuptime
# Create .env file if it does not exist.
touch config.env
#Run a scirpt to merge config.env.tpl to config.env
2022-11-09 12:53:55 +00:00
ts-node-esm ./Scripts/Install/MergeEnvTemplate.ts
2022-11-08 15:24:58 +00:00
2022-11-08 16:22:19 +00:00
cat config.env.temp | gomplate > config.env
rm config.env.temp
2022-11-08 15:24:58 +00:00
# Load env values from config.env
export $(grep -v '^#' config.env | xargs)
# Write env vars in config files.
2022-11-08 17:40:45 +00:00
for directory_name in $(find . -type d -maxdepth 1) ; do
if [ -f "$directory_name/.env.tpl" ]; then
cat $directory_name/.env.tpl | gomplate > $directory_name/.env
2022-11-08 15:24:58 +00:00
fi
2022-11-08 16:22:19 +00:00
2022-11-08 17:40:45 +00:00
if [ -f "$directory_name/Dockerfile.tpl" ]; then
cat $directory_name/Dockerfile.tpl | gomplate > $directory_name/Dockerfile
2022-11-08 17:19:49 +00:00
fi
done
2022-11-08 16:22:19 +00:00
2022-11-08 17:40:45 +00:00
# Convert template to docker-compose.
2022-11-08 16:22:19 +00:00
cat docker-compose.tpl.yml | gomplate > docker-compose.yml