mirror of
https://github.com/getsentry/self-hosted.git
synced 2026-02-06 10:57:17 +00:00
12 lines
275 B
Bash
12 lines
275 B
Bash
#!/bin/bash
|
|
set -eo pipefail
|
|
|
|
# Create getsentry folder and enter.
|
|
mkdir /home/user/getsentry
|
|
cd /home/user/getsentry
|
|
|
|
# Pull down sentry and self-hosted.
|
|
git clone https://github.com/getsentry/sentry.git
|
|
git clone https://github.com/getsentry/self-hosted.git
|
|
cd self-hosted
|