Installation
SliDesk can be installed in several ways. Choose the one that suits you best.
Homebrew (macOS / Linux)
brew tap gouz/tools && brew install slidesk
or
brew install gouz/tools/slidesk
Bun (any platform)
SliDesk is built with Bun. If you do not have Bun yet:
curl -fsSL https://bun.sh/install | bash
Then use SliDesk directly:
bunx slidesk
Debian / Ubuntu
Download the .deb file from the releases page.
Docker
SliDesk is also available as a Docker image (gouz/slidesk):
# Present a talk from the current directory
docker run -it -v "$(pwd)"/:/slidesk/ -p 1337:1337 gouz/slidesk:latest slidesk
# Create a new talk
docker run -it -v "$(pwd)"/:/slidesk/ gouz/slidesk:latest slidesk create my-talk
# Export as static site
docker run -it -v "$(pwd)"/:/slidesk/ gouz/slidesk:latest slidesk save my-talk
SliDesk is now accessible at http://localhost:1337.