Difference between revisions of "Stuff-org"
Jump to navigation
Jump to search
(Created page with "== sudoroom uses stuff-org written by Henner Zeller to track stuff in the space (and in the community) == thumb * Noisebridge [https://parts.noisebridge.net runs a version of this] but you can only edit if you're on the local network * [https://github.com/sudoroom/stuff-org/tree/sudoroom we use a fork of the main repository, branch "sudoroom"] * we use [https://github.com/jerkey/websnap websnap] to update the images '''make sure this c...") |
|||
| Line 8: | Line 8: | ||
== installation == | == installation == | ||
* install golang, pull the repository, run make | * install golang, pull the repository, run make | ||
< | <pre> | ||
sudo apt update && sudo apt install golang-go | sudo apt update && sudo apt install golang-go | ||
sudo adduser --disabled-password stuff | sudo adduser --disabled-password stuff | ||
| Line 16: | Line 16: | ||
git checkout sudoroom | git checkout sudoroom | ||
make | make | ||
</ | </pre> | ||
* install nvm so we can have node | |||
<pre> | |||
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash | |||
exit | |||
(now log back in) | |||
nvm install --lts | |||
</pre> | |||
* install websnap (in home directory, not inside stuff-org) | |||
<pre> | |||
git clone https://github.com/jerkey/websnap | |||
cd websnap | |||
npm install | |||
</pre> | |||
Revision as of 13:13, 14 April 2026
sudoroom uses stuff-org written by Henner Zeller to track stuff in the space (and in the community)
- Noisebridge runs a version of this but you can only edit if you're on the local network
- we use a fork of the main repository, branch "sudoroom"
- we use websnap to update the images make sure this cant be abused from outside the network
installation
- install golang, pull the repository, run make
sudo apt update && sudo apt install golang-go sudo adduser --disabled-password stuff sudo su stuff git clone https://github.com/sudoroom/stuff-org cd stuff-org git checkout sudoroom make
- install nvm so we can have node
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash exit (now log back in) nvm install --lts
- install websnap (in home directory, not inside stuff-org)
git clone https://github.com/jerkey/websnap cd websnap npm install
