mirror of
https://github.com/getsentry/self-hosted.git
synced 2025-12-08 19:46:14 +00:00
31 lines
870 B
Bash
Executable File
31 lines
870 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
if [[ -n "$MSYSTEM" ]]; then
|
|
echo "Seems like you are using an MSYS2-based system (such as Git Bash) which is not supported. Please use WSL instead.";
|
|
exit 1
|
|
fi
|
|
|
|
source "$(dirname $0)/install/_lib.sh" # does a `cd .../install/`, among other things
|
|
|
|
source parse-cli.sh
|
|
source check-latest-commit.sh
|
|
source error-handling.sh
|
|
source check-minimum-requirements.sh
|
|
source create-docker-volumes.sh
|
|
source ensure-files-from-examples.sh
|
|
source generate-secret-key.sh
|
|
source replace-tsdb.sh
|
|
source update-docker-images.sh
|
|
source build-docker-images.sh
|
|
source turn-things-off.sh
|
|
source set-up-zookeeper.sh
|
|
source install-wal2json.sh
|
|
source bootstrap-snuba.sh
|
|
source create-kafka-topics.sh
|
|
source upgrade-postgres.sh
|
|
source set-up-and-migrate-database.sh
|
|
source migrate-file-storage.sh
|
|
source relay-credentials.sh
|
|
source geoip.sh
|
|
source wrap-up.sh
|