docs: clean up cmd readme, add just install hint

This commit is contained in:
2026-05-06 19:48:25 +02:00
parent 15cf2f4881
commit 901cf5497f
2 changed files with 6 additions and 7 deletions

View File

@@ -1,9 +1,8 @@
# cmd
Executable entrypoints live here.
Executables live here.
- `cmd/server`: main web process (`go run ./cmd/server`)
## Why this structure
I wanted to keep the repository root clean and focused on project metadata like `README.md`, `go.mod`, and `Dockerfile`. Keeping entrypoints under `cmd/` also makes it easy to add more binaries later without cluttering the root, and it matches standard Go conventions for projects that grow beyond a single binary.
| binary | purpose |
| --- | --- |
| `cmd/server` | web server |
| `cmd/user` | user creation CLI |