Build system, release automation, SDK generation, Ansible executor, LinuxKit dev environments, container runtime, deployment, infra metrics, and developer toolkit. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
768 B
Go
21 lines
768 B
Go
// Package buildcmd provides project build commands with auto-detection.
|
|
//
|
|
// Supports building:
|
|
// - Go projects (standard and cross-compilation)
|
|
// - Wails desktop applications
|
|
// - Docker images
|
|
// - LinuxKit VM images
|
|
// - Taskfile-based projects
|
|
//
|
|
// Configuration via .core/build.yaml or command-line flags.
|
|
//
|
|
// Subcommands:
|
|
// - build: Auto-detect and build the current project
|
|
// - build from-path: Build from a local static web app directory
|
|
// - build pwa: Build from a live PWA URL
|
|
// - build sdk: Generate API SDKs from OpenAPI spec
|
|
package buildcmd
|
|
|
|
// Note: The AddBuildCommands function is defined in cmd_build.go
|
|
// This file exists for documentation purposes and maintains the original
|
|
// package documentation from commands.go.
|