How to seed a Hyperdrive website on Debian 10
published: 2020-09-12
- Install a recent version of Node.js.
sudo -i
curl -sL https://deb.nodesource.com/setup_14.x | bash -
apt-get install -y nodejs fuse
- Install the Hyperdrive daemon.
npm install -g hyperdrive-daemon && exit
The exit
is necessary so that you're back in your normal user account again.
- Set up the Fuse mount:
mkdir ~/Hyperdrive
hyperdrive fuse-setup
- Start the Hyperdrive daemon. (You should do this in a multiplexer, as it will run in the foreground.)
hyperdrive start --foreground
- Seed your first site.
cd ~/Hyperdrive && hyperdrive mount MakeUpANameHere SiteKeyHere
CC BY-NC-SA 4.0 © Vane Vander