mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
add electron
This commit is contained in:
Executable
+49
@@ -0,0 +1,49 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# deploy html to a server and then add html to ipfs
|
||||
|
||||
# go to current folder
|
||||
cd "$(dirname "$0")"
|
||||
|
||||
# add env vars
|
||||
if [ -f ../.env ]; then
|
||||
export $(echo $(cat ../.env | sed 's/#.*//g'| xargs) | envsubst)
|
||||
fi
|
||||
|
||||
# check creds
|
||||
if [ -z "${DEPLOY_HOST+xxx}" ]; then echo "DEPLOY_HOST not set" && exit; fi
|
||||
if [ -z "${DEPLOY_USER+xxx}" ]; then echo "DEPLOY_USER not set" && exit; fi
|
||||
if [ -z "${DEPLOY_PASSWORD+xxx}" ]; then echo "DEPLOY_PASSWORD not set" && exit; fi
|
||||
|
||||
# save version
|
||||
PLEBCHAN_VERSION=$(node -e "console.log(require('../package.json').version)")
|
||||
PLEBCHAN_HTML_NAME="plebchan-html-$PLEBCHAN_VERSION"
|
||||
|
||||
SCRIPT="
|
||||
# download html
|
||||
cd ~
|
||||
rm $PLEBCHAN_HTML_NAME.zip
|
||||
rm -fr $PLEBCHAN_HTML_NAME
|
||||
wget https://github.com/plebbit/plebchan/releases/download/v$PLEBCHAN_VERSION/$PLEBCHAN_HTML_NAME.zip || exit
|
||||
|
||||
# extract html
|
||||
unzip $PLEBCHAN_HTML_NAME.zip || exit
|
||||
rm $PLEBCHAN_HTML_NAME.zip || exit
|
||||
|
||||
# add to ipfs
|
||||
CID=\`ipfs add --recursive --pin --quieter $PLEBCHAN_HTML_NAME | tail -n 1\`
|
||||
ipfs pin add --recursive \"\$CID\"
|
||||
|
||||
# start ipfs daemon if not started
|
||||
ipfs init
|
||||
nohup ipfs daemon &
|
||||
|
||||
# the CID of plebchan html, add this CID to ENS
|
||||
sleep 3
|
||||
echo \"\"
|
||||
echo $PLEBCHAN_HTML_NAME \"CID: \$CID\"
|
||||
echo \"\"
|
||||
"
|
||||
|
||||
# execute script over ssh
|
||||
echo "$SCRIPT" | sshpass -p "$DEPLOY_PASSWORD" ssh "$DEPLOY_USER"@"$DEPLOY_HOST"
|
||||
Reference in New Issue
Block a user