From fc54fcf573cd7a549b44784428bbf2d8e6f5c232 Mon Sep 17 00:00:00 2001 From: Acbox Date: Wed, 18 Mar 2026 17:34:56 +0800 Subject: [PATCH] chore(mise): add task `install-workspace-toolkit` --- mise.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mise.toml b/mise.toml index 62d09979..b47483d5 100644 --- a/mise.toml +++ b/mise.toml @@ -119,6 +119,10 @@ run = "cd packages/cli && npm install -g" description = "Install socktainer" run = "brew tap socktainer/tap && brew install socktainer" +[tasks.install-workspace-toolkit] +description = "Install workspace toolkit" +run = "cd docker/toolkit && ./install.sh" + [tasks.lint] description = "Run all linters" depends = [ @@ -152,6 +156,7 @@ run = "pnpm lint:fix" [tasks.setup] description = "Setup development environment" depends = [ + "//:install-workspace-toolkit", "//:sqlc-generate", "//:pnpm-install", "//:go-install",