Default Cobra CMD Setup

This commit is contained in:
simon 2026-05-26 15:31:44 +02:00
commit 3465dfc95f
9 changed files with 185 additions and 0 deletions

23
cmd/generate.go Normal file
View File

@ -0,0 +1,23 @@
package cmd
import (
"github.com/spf13/cobra"
)
var generateCmd = &cobra.Command{
Use: "generate",
Short: "Generate project artifacts",
}
var generateTemplateCmd = &cobra.Command{
Use: "template",
Short: "Generate a template",
Run: func(cmd *cobra.Command, args []string) {
// TODO: implement template generation
},
}
func init() {
generateCmd.AddCommand(generateTemplateCmd)
rootCmd.AddCommand(generateCmd)
}

43
cmd/root.go Normal file
View File

@ -0,0 +1,43 @@
package cmd
import (
"fmt"
"os"
"github.com/spf13/cobra"
"printer.backend/internal/config"
)
var (
cfgFile string
cfg *config.Config
)
var rootCmd = &cobra.Command{
Use: "printer-backend",
Short: "Alox printer backend CLI",
PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
if cfgFile == "" {
cfg = config.Default()
return nil
}
var err error
cfg, err = config.Load(cfgFile)
return err
},
SilenceUsage: true,
}
// Execute runs the root command.
func Execute() error {
return rootCmd.Execute()
}
func init() {
rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "path to JSON config file")
}
func exitWithError(err error) {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}

17
cmd/serve.go Normal file
View File

@ -0,0 +1,17 @@
package cmd
import (
"github.com/spf13/cobra"
)
var serveCmd = &cobra.Command{
Use: "serve",
Short: "Start the HTTP server",
Run: func(cmd *cobra.Command, args []string) {
// TODO: implement server
},
}
func init() {
rootCmd.AddCommand(serveCmd)
}

29
cmd/version.go Normal file
View File

@ -0,0 +1,29 @@
package cmd
import (
"fmt"
"runtime"
"github.com/spf13/cobra"
)
var (
version = "dev"
commit = "none"
date = "unknown"
)
var versionCmd = &cobra.Command{
Use: "version",
Short: "Print version information",
Run: func(cmd *cobra.Command, args []string) {
fmt.Printf("printer-backend %s\n", version)
fmt.Printf(" commit: %s\n", commit)
fmt.Printf(" built: %s\n", date)
fmt.Printf(" go: %s\n", runtime.Version())
},
}
func init() {
rootCmd.AddCommand(versionCmd)
}

4
config.example.json Normal file
View File

@ -0,0 +1,4 @@
{
"host": "127.0.0.1",
"port": 8080
}

10
go.mod Normal file
View File

@ -0,0 +1,10 @@
module printer.backend
go 1.26.3
require github.com/spf13/cobra v1.10.2
require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/spf13/pflag v1.0.9 // indirect
)

10
go.sum Normal file
View File

@ -0,0 +1,10 @@
github.com/cpuguy83/go-md2man/v2 v2.0.6/go.mod h1:oOW0eioCTA6cOiMLiUPZOpcVxMig6NIQQ7OS05n1F4g=
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=
github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
github.com/spf13/cobra v1.10.2 h1:DMTTonx5m65Ic0GOoRY2c16WCbHxOOw6xxezuLaBpcU=
github.com/spf13/cobra v1.10.2/go.mod h1:7C1pvHqHw5A4vrJfjNwvOdzYu0Gml16OCs2GRiTUUS4=
github.com/spf13/pflag v1.0.9 h1:9exaQaMOCwffKiiiYk6/BndUBv+iRViNW+4lEMi0PvY=
github.com/spf13/pflag v1.0.9/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
go.yaml.in/yaml/v3 v3.0.4/go.mod h1:DhzuOOF2ATzADvBadXxruRBLzYTpT36CKvDb3+aBEFg=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=

36
internal/config/config.go Normal file
View File

@ -0,0 +1,36 @@
package config
import (
"encoding/json"
"fmt"
"os"
)
// Config is the application configuration loaded from JSON.
type Config struct {
Host string `json:"host"`
Port int `json:"port"`
}
// Default returns sensible defaults when no config file is used.
func Default() *Config {
return &Config{
Host: "127.0.0.1",
Port: 8080,
}
}
// Load reads and parses a JSON config file from path.
func Load(path string) (*Config, error) {
data, err := os.ReadFile(path)
if err != nil {
return nil, fmt.Errorf("read config: %w", err)
}
cfg := Default()
if err := json.Unmarshal(data, cfg); err != nil {
return nil, fmt.Errorf("parse config: %w", err)
}
return cfg, nil
}

13
main.go Normal file
View File

@ -0,0 +1,13 @@
package main
import (
"os"
"printer.backend/cmd"
)
func main() {
if err := cmd.Execute(); err != nil {
os.Exit(1)
}
}