mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-09 22:51:12 +02:00
Fixes #1666 1. Remove custom validation of Args, use cobra-provided validators. 2. Always use errors to stop the execution flow, don't rely on `log.Fatal` and `panic` for normal flows. This makes sure `defer` always has a chance to run, connection is shut down in a clean way. 3. Command `docs` is hidden, as it's not for users. 4. Global variable `globalCtx` is removed, `WithClient` is used to pass context to the command. 5. `setupClientE` renamed to `WithClient`, `setupClient` removed. 6. Code from `cmd/root.go` moved to `pkg/helpers` when possible. Signed-off-by: Andrey Smirnov <smirnov.andrey@gmail.com>
docs
A static site for Talos documentation
Build Setup
# install dependencies
npm install
# serve with hot reload at localhost:3000
npm run dev
# build for production and launch server
npm run build
npm run start
# generate static project
npm run generate
For detailed explanation on how things work, check out Nuxt.js docs.