forked from jason/cpolis
Clean up project structure
This commit is contained in:
parent
4a2aed5bcf
commit
5753ebda24
58
update.sh
58
update.sh
@ -1,58 +0,0 @@
|
|||||||
#! /bin/sh -
|
|
||||||
|
|
||||||
CPOLIS_REPO_URL="https://git.streifling.com/api/v1/repos/jason/cpolis/releases"
|
|
||||||
EXTRACTION_DIR=$HOME
|
|
||||||
CPOLIS_DIR=$EXTRACTION_DIR/cpolis
|
|
||||||
TAILWINDCSS_REPO_URL=https://api.github.com/repos/tailwindlabs/tailwindcss/releases/latest
|
|
||||||
TMP_DIR=/tmp
|
|
||||||
BIN_DIR=/usr/local/bin
|
|
||||||
SYSTEMD_DIR=/etc/systemd/system
|
|
||||||
|
|
||||||
check_dependency() {
|
|
||||||
if ! which $1 >/dev/null 2>&1; then
|
|
||||||
echo "$1 needs to be installed" >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
if ! groups | grep -E 'root|wheel|sudo' >/dev/null; then
|
|
||||||
echo "You need administrative privileges for this script" >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
check_dependency curl
|
|
||||||
check_dependency go
|
|
||||||
check_dependency jq
|
|
||||||
check_dependency tar
|
|
||||||
check_dependency xargs
|
|
||||||
|
|
||||||
echo '\nDownloading cpolis...' >&2
|
|
||||||
rm -fr $CPOLIS_DIR/*
|
|
||||||
latest_release=$(curl -s $CPOLIS_REPO_URL | jq -r '.[0].tag_name')
|
|
||||||
curl -Lo $TMP_DIR/cpolis.tar.gz https://git.streifling.com/jason/cpolis/archive/$latest_release.tar.gz
|
|
||||||
tar -xzf $TMP_DIR/cpolis.tar.gz -C $EXTRACTION_DIR
|
|
||||||
rm $TMP_DIR/cpolis.tar.gz
|
|
||||||
|
|
||||||
echo '\nDownloading TailwindCSS...' >&2
|
|
||||||
curl -s $TAILWINDCSS_REPO_URL |
|
|
||||||
grep -F browser_download_url |
|
|
||||||
grep -F linux-x64 |
|
|
||||||
cut -d'"' -f4 |
|
|
||||||
xargs -r curl -Lo $CPOLIS_DIR/tailwindcss
|
|
||||||
chmod +x $CPOLIS_DIR/tailwindcss
|
|
||||||
$CPOLIS_DIR/tailwindcss -i $CPOLIS_DIR/web/static/css/input.css -o $CPOLIS_DIR/web/static/css/style.css
|
|
||||||
|
|
||||||
echo '\nBuilding cpolis...' >&2
|
|
||||||
cd $CPOLIS_DIR
|
|
||||||
go build -o $BIN_DIR/cpolis cmd/main.go
|
|
||||||
cd
|
|
||||||
|
|
||||||
echo '\nSetting up system files...' >&2
|
|
||||||
sudo chown root:root $BIN_DIR/cpolis
|
|
||||||
chmod +x $BIN_DIR/cpolis
|
|
||||||
|
|
||||||
echo '\nSetting up service...' >&2
|
|
||||||
sudo mv $CPOLIS_DIR/cpolis.service $SYSTEMD_DIR
|
|
||||||
sudo chown root:root $SYSTEMD_DIR/cpolis.service
|
|
||||||
sudo systemctl daemon-reload
|
|
||||||
sudo systemctl is-active --quiet cpolis.service && sudo systemctl restart cpolis.service
|
|
Loading…
x
Reference in New Issue
Block a user