Fixed invalid references to pastebin now scratchbox

This commit is contained in:
2026-05-31 17:13:34 -05:00
parent efc9eeb536
commit 696b5c57f7
6 changed files with 13 additions and 13 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
# Scratchbox Pastebin
# Scratchbox
Scratchbox is a minimal self-hosted pastebin service written in Go. It is intentionally unauthenticated and optimized for temporary sharing of text or small files with an expiration time.
Scratchbox is a minimal self-hosted scratch service written in Go. It is intentionally unauthenticated and optimized for temporary sharing of text or small files with an expiration time.
Each upload creates exactly one scratch. For multi-file sharing, bundle files into an archive (for example `.zip` or `.tar.gz`) and upload that single archive file.
Scratch content is stored on disk gzip-compressed transparently to reduce filesystem usage; API/UI reads return original uncompressed content.
@@ -11,7 +11,7 @@ Scratch content is stored on disk gzip-compressed transparently to reduce filesy
- `cp config.example.yaml config.yaml`
2. Adjust settings for your environment.
3. Start the server:
- `go run ./cmd/pastebin -config config.yaml`
- `go run ./cmd/scratchbox server -config config.yaml`
4. Open:
- `http://127.0.0.1:8080/`