commit:25c5d67bb03091babf2d41f9e454e943ccd42b85
author:Chip Black
committer:Chip Black
date:Wed Dec 28 13:04:30 2022 -0600
parents:b837e9163f47c719a2fd6c5de8bc9361e77a998b
Add build-mastodon-dev script
diff --git a/build-mastodon-dev.sh b/build-mastodon-dev.sh
line changes: +43/-0
index 0000000..7e13bfa
--- /dev/null
+++ b/build-mastodon-dev.sh
@@ -0,0 +1,43 @@
+#!/bin/sh
+
+. lib.sh
+. common.opts
+
+load_opts "$1"
+
+PACKAGES="$(cat pkglist-mastodon.txt | tr '[:space:]' ' ')"
+
+set -e
+set -x
+
+JAILNAME=$MASTODON_JAILNAME
+ADDR=$MASTODON_ADDR
+
+bastille create $JAILNAME $FREEBSD_RELEASE $ADDR
+
+IPV6_ADDR=fdcb:dbd4:3a2f:$(echo $ADDR | cut -d. -f3)::$(echo $ADDR | cut -d. -f4)
+bastille config $JAILNAME set ip6.addr $IPV6_ADDR
+bastille restart $JAILNAME
+
+bastille pkg $JAILNAME install -y $PACKAGES
+bastille cmd $JAILNAME pw user add mastodon -m -h -
+jexec -U mastodon $JAILNAME /bin/sh <<SCRIPT
+set -e
+set -x
+
+cd
+git clone $MASTODON_REPO live
+cd ~/live
+git checkout -b prod $MASTODON_VERSION
+bundle config deployment 'true'
+bundle install
+yarn install --pure-lockfile
+SCRIPT
+bastille cmd $JAILNAME gem install foreman --no-document
+
+sed -e "s/\$DB_HOST/$POSTGRES_ADDR/" \
+    -e "s/\$REDIS_HOST/$REDIS_ADDR/" \
+    -e "s/\$HOSTNAME/$HOSTNAME/" \
+    mastodon/env.production.tmpl > env
+bastille cp $JAILNAME env /home/mastodon/live/.env
+rm env