A minimal, self-hosted paste service for the command line.
No database. No frameworks. Just files.
$ echo "hello world" | naste
https://paste.semi.sh/abc123
$ curl https://paste.semi.sh/abc123
hello worldgo install github.com/semi710/naste/cmd/naste@latestOr run without installing:
echo "hello" | nix run github:semi710/naste#naste --docker run -d --name naste -p 8080:8080 -v /var/lib/naste/data:/data/paste \
ghcr.io/semi710/naste-server:latestNixOS:
services.naste-server.enable = true;
programs.naste-client = {
enable = true;
endpoint = "https://paste.semi.sh";
};Full docs at naste.semi.sh - CLI usage, Docker, Nix, NixOS module, Home Manager, API reference, reverse proxy guides.