docs: fix outdated user creation command

This commit is contained in:
2026-05-06 19:45:38 +02:00
parent 7fac75d17f
commit 7592568c4b

View File

@@ -82,7 +82,7 @@ Install [Go](https://go.dev/dl), [Bun](https://bun.sh), and [just](https://githu
git clone https://github.com/mkelvers/mal.git && cd mal git clone https://github.com/mkelvers/mal.git && cd mal
openssl rand -base32 32 openssl rand -base32 32
PLAYBACK_PROXY_SECRET="your-32-char-secret" go run ./cmd/server PLAYBACK_PROXY_SECRET="your-32-char-secret" go run ./cmd/server
go run ./cmd/server create-user <username> <password> go run ./cmd/user <username> <password>
``` ```
The app runs at `http://localhost:3000`. The app runs at `http://localhost:3000`.
@@ -114,7 +114,7 @@ docker run --rm -p 3000:3000 \
-v "$(pwd)/data:/app/data" \ -v "$(pwd)/data:/app/data" \
mal mal
docker exec mal /server create-user <username> <password> docker exec mal ./cmd/user <username> <password>
``` ```
## Configuration ## Configuration