Story labs

Manual upgrade

Start a codespace from a template and get to developing with the power of a virtual machine in the cloud.

Upgrade Story

cd $HOME
rm -rf story
git clone https://github.com/piplabs/story story
cd story
APP_VERSION=v1.3.1
git checkout tags/$APP_VERSION -b $APP_VERSION
go build -o story ./client
mv $HOME/story/story $HOME/go/bin/.
sudo systemctl restart story && sudo journalctl -u story -f

Upgrade Story Geth

cd $HOME
rm -rf geth
git clone https://github.com/piplabs/story-geth geth
cd geth
APP_VERSION=v1.1.1
git checkout tags/$APP_VERSION -b $APP_VERSION
go build -v ./cmd/geth
mv ./geth $HOME/go/bin/geth
sudo systemctl restart geth && sudo journalctl -u geth -f