- Fix cli.RegisterCommands signature mismatch (cli v0.3.5 takes single CommandRegistration, not variadic localeFS); register locales via i18n.RegisterLocales in locales/embed.go init() - Replace fmt.Errorf inside log.E with plain string concat in deploy/python and deploy/coolify - Remove unused fmt import from deploy/coolify/client.go - Update CLAUDE.md: correct LOC count, clarify cmd/community and cmd/gitcmd descriptions, add locales package, fix error convention from core.E/fmt.Errorf to log.E Co-Authored-By: Virgil <virgil@lethean.io>
42 lines
1.3 KiB
Go
42 lines
1.3 KiB
Go
// Package setup provides workspace bootstrap and package cloning commands.
|
|
//
|
|
// Two modes of operation:
|
|
//
|
|
// REGISTRY MODE (repos.yaml exists):
|
|
// - Clones all repositories defined in repos.yaml into packages/
|
|
// - Skips repos that already exist
|
|
// - Supports filtering by type with --only
|
|
//
|
|
// BOOTSTRAP MODE (no repos.yaml):
|
|
// - Clones core-devops to set up the workspace foundation
|
|
// - Presents an interactive wizard to select packages (unless --all)
|
|
// - Clones selected packages
|
|
//
|
|
// Flags:
|
|
// - --registry: Path to repos.yaml (auto-detected if not specified)
|
|
// - --only: Filter by repo type (foundation, module, product)
|
|
// - --dry-run: Preview what would be cloned
|
|
// - --all: Skip wizard, clone all packages (non-interactive)
|
|
// - --name: Project directory name for bootstrap mode
|
|
// - --build: Run build after cloning
|
|
//
|
|
// Uses gh CLI with HTTPS when authenticated, falls back to SSH.
|
|
package setup
|
|
|
|
import (
|
|
"forge.lthn.ai/core/cli/pkg/cli"
|
|
"forge.lthn.ai/core/go-i18n"
|
|
|
|
_ "forge.lthn.ai/core/go-devops/locales"
|
|
)
|
|
|
|
func init() {
|
|
cli.RegisterCommands(AddSetupCommands)
|
|
}
|
|
|
|
// AddSetupCommands registers the 'setup' command and all subcommands.
|
|
func AddSetupCommands(root *cli.Command) {
|
|
setupCmd.Short = i18n.T("cmd.setup.short")
|
|
setupCmd.Long = i18n.T("cmd.setup.long")
|
|
AddSetupCommand(root)
|
|
}
|