Updated install script and README with new build setup
This commit is contained in:
11
README.md
11
README.md
@@ -29,7 +29,8 @@ Spoolman includes a web-client that lets you directly manipulate all the data. I
|
||||
_The web client is translated by the community using [Weblate](https://hosted.weblate.org/projects/spoolman/)._
|
||||
|
||||
## Integration status
|
||||
Spoolman is still relatively new, so support isn't widespread yet, but it's being actively integrated to multiple different projects.
|
||||
Spoolman doesn't depend on any specific printer software, but to make the most out of it, you should use it together with a frontend that supports it.
|
||||
It is currently only supported in the Klipper ecosystem, with official support for the major frontends. Support for other ecosystems like Octoprint is ongoing.
|
||||
|
||||
* ✔️ Moonraker - See the [Moonraker Documentation](https://moonraker.readthedocs.io/en/latest/configuration/#spoolman)
|
||||
* ✔️ Fluidd
|
||||
@@ -52,8 +53,8 @@ Copy-paste the entire below command and run it on your machine to install Spoolm
|
||||
sudo apt-get update && \
|
||||
sudo apt-get install -y curl jq && \
|
||||
mkdir -p ./Spoolman && \
|
||||
source_url=$(curl -s https://api.github.com/repos/Donkie/Spoolman/releases/latest | jq -r ".tarball_url") && \
|
||||
curl -sSL $source_url | tar -xz --strip-components=1 -C ./Spoolman && \
|
||||
source_url=$(curl -s https://api.github.com/repos/Donkie/Spoolman/releases/latest | jq -r '.assets[] | select(.name == "spoolman.zip").browser_download_url') && \
|
||||
curl -sSL $source_url -o temp.zip && unzip temp.zip -d ./Spoolman && rm temp.zip && \
|
||||
cd ./Spoolman && \
|
||||
bash ./scripts/install_debian.sh
|
||||
```
|
||||
@@ -72,8 +73,8 @@ systemctl --user disable Spoolman
|
||||
# Download and install the new version
|
||||
mv Spoolman Spoolman_old && \
|
||||
mkdir -p ./Spoolman && \
|
||||
source_url=$(curl -s https://api.github.com/repos/Donkie/Spoolman/releases/latest | jq -r ".tarball_url") && \
|
||||
curl -sSL $source_url | tar -xz --strip-components=1 -C ./Spoolman && \
|
||||
source_url=$(curl -s https://api.github.com/repos/Donkie/Spoolman/releases/latest | jq -r '.assets[] | select(.name == "spoolman.zip").browser_download_url') && \
|
||||
curl -sSL $source_url -o temp.zip && unzip temp.zip -d ./Spoolman && rm temp.zip && \
|
||||
cp Spoolman_old/.env Spoolman/.env && \
|
||||
cd ./Spoolman && \
|
||||
bash ./scripts/install_debian.sh && \
|
||||
|
||||
Reference in New Issue
Block a user