Skip to content

Commit

Permalink
Initial code scaffolding
Browse files Browse the repository at this point in the history
  • Loading branch information
oscar-izval committed Apr 27, 2024
1 parent cafbf44 commit 535e36f
Show file tree
Hide file tree
Showing 11 changed files with 289 additions and 1 deletion.
5 changes: 4 additions & 1 deletion devenv.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@
packages = [
pkgs.nix-prefetch
pkgs.semantic-release
pkgs.cobra-cli # Temporary
];

scripts.update-versions.exec =
languages.go.enable = true;

scripts.update-versions-py.exec = # We should remove this too when ready to merge
let
python = pkgs.python3.withPackages (ps: [
ps.pygithub
Expand Down
6 changes: 6 additions & 0 deletions nixpkgs-terraform-cli/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
1. `cd update-versions`
2. `go mod init github.com/stackbuilders/nixpkgs-terraform/nixpkgs-terraform-cli`
3. `cobra-cli init .`

# Run the app
Either `go run main.go -h` or `go install && update-versions -h`
41 changes: 41 additions & 0 deletions nixpkgs-terraform-cli/cmd/publish/publish.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/*
Copyright © 2024 NAME HERE <EMAIL ADDRESS>
*/
package cmd

import (
"fmt"

"github.com/stackbuilders/nixpkgs-terraform/nixpkgs-terraform-cli/cmd"
"github.com/spf13/cobra"
)

// publishCmd represents the publish command
var publishCmd = &cobra.Command{
Use: "publish",
Short: "A brief description of your command",
Long: `A longer description that spans multiple lines and likely contains examples
and usage of using your command. For example:
Cobra is a CLI library for Go that empowers applications.
This application is a tool to generate the needed files
to quickly create a Cobra application.`,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("publish called")
},
}

func init() {
cmd.RootCmd.AddCommand(publishCmd)

// Here you will define your flags and configuration settings.

// Cobra supports Persistent Flags which will work for this command
// and all subcommands, e.g.:
// publishCmd.PersistentFlags().String("foo", "", "A help for foo")

// Cobra supports local flags which will only run when this command
// is called directly, e.g.:
// publishCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
}
38 changes: 38 additions & 0 deletions nixpkgs-terraform-cli/cmd/root.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/*
Copyright © 2024 NAME HERE <EMAIL ADDRESS>
*/
package cmd

import (
"os"

"github.com/spf13/cobra"
)

var RootCmd = &cobra.Command{
Use: "nixpkgs-terraform-cli",
Short: "CLI tool to simplify management in the project.",
}

func Execute() {
err := RootCmd.Execute()
if err != nil {
os.Exit(1)
}
}

func init() {
// Here you will define your flags and configuration settings.
// Cobra supports persistent flags, which, if defined here,
// will be global for your application.

// RootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.update-versions.yaml)")

// Cobra also supports local flags, which will only run
// when this action is called directly.
// RootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
RootCmd.Flags().StringP("vendor-hash", "v", "vendor-hash.nix", "Path to vendor-hash.nix file")
}


40 changes: 40 additions & 0 deletions nixpkgs-terraform-cli/cmd/update/lockFiles.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/*
Copyright © 2024 NAME HERE <EMAIL ADDRESS>
*/
package update

import (
"fmt"

"github.com/spf13/cobra"
)

// lockFilesCmd represents the lockFiles command
var lockFilesCmd = &cobra.Command{
Use: "lockFiles",
Short: "A brief description of your command",
Long: `A longer description that spans multiple lines and likely contains examples
and usage of using your command. For example:
Cobra is a CLI library for Go that empowers applications.
This application is a tool to generate the needed files
to quickly create a Cobra application.`,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("lockFiles called")
},
}

func init() {
UpdateCmd.AddCommand(lockFilesCmd)

// Here you will define your flags and configuration settings.

// Cobra supports Persistent Flags which will work for this command
// and all subcommands, e.g.:
// lockFilesCmd.PersistentFlags().String("foo", "", "A help for foo")

// Cobra supports local flags which will only run when this command
// is called directly, e.g.:
// lockFilesCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
}
40 changes: 40 additions & 0 deletions nixpkgs-terraform-cli/cmd/update/templates.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/*
Copyright © 2024 NAME HERE <EMAIL ADDRESS>
*/
package update

import (
"fmt"

"github.com/spf13/cobra"
)

// templatesCmd represents the templates command
var templatesCmd = &cobra.Command{
Use: "templates",
Short: "A brief description of your command",
Long: `A longer description that spans multiple lines and likely contains examples
and usage of using your command. For example:
Cobra is a CLI library for Go that empowers applications.
This application is a tool to generate the needed files
to quickly create a Cobra application.`,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("templates called")
},
}

func init() {
UpdateCmd.AddCommand(templatesCmd)

// Here you will define your flags and configuration settings.

// Cobra supports Persistent Flags which will work for this command
// and all subcommands, e.g.:
// templatesCmd.PersistentFlags().String("foo", "", "A help for foo")

// Cobra supports local flags which will only run when this command
// is called directly, e.g.:
// templatesCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
}
41 changes: 41 additions & 0 deletions nixpkgs-terraform-cli/cmd/update/update.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/*
Copyright © 2024 NAME HERE <EMAIL ADDRESS>
*/
package update

import (
"fmt"

"github.com/stackbuilders/nixpkgs-terraform/nixpkgs-terraform-cli/cmd"
"github.com/spf13/cobra"
)

// updateCmd represents the update command
var UpdateCmd = &cobra.Command{
Use: "update",
Short: "A brief description of your command",
Long: `A longer description that spans multiple lines and likely contains examples
and usage of using your command. For example:
Cobra is a CLI library for Go that empowers applications.
This application is a tool to generate the needed files
to quickly create a Cobra application.`,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("update called")
},
}

func init() {
cmd.RootCmd.AddCommand(UpdateCmd)

// Here you will define your flags and configuration settings.

// Cobra supports Persistent Flags which will work for this command
// and all subcommands, e.g.:
// updateCmd.PersistentFlags().String("foo", "", "A help for foo")

// Cobra supports local flags which will only run when this command
// is called directly, e.g.:
// updateCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
}
40 changes: 40 additions & 0 deletions nixpkgs-terraform-cli/cmd/update/versions.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/*
Copyright © 2024 NAME HERE <EMAIL ADDRESS>
*/
package update

import (
"fmt"

"github.com/spf13/cobra"
)

// versionsCmd represents the versions command
var versionsCmd = &cobra.Command{
Use: "versions",
Short: "A brief description of your command",
Long: `A longer description that spans multiple lines and likely contains examples
and usage of using your command. For example:
Cobra is a CLI library for Go that empowers applications.
This application is a tool to generate the needed files
to quickly create a Cobra application.`,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("versions called")
},
}

func init() {
UpdateCmd.AddCommand(versionsCmd)

// Here you will define your flags and configuration settings.

// Cobra supports Persistent Flags which will work for this command
// and all subcommands, e.g.:
// versionsCmd.PersistentFlags().String("foo", "", "A help for foo")

// Cobra supports local flags which will only run when this command
// is called directly, e.g.:
// versionsCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
}
10 changes: 10 additions & 0 deletions nixpkgs-terraform-cli/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module github.com/stackbuilders/nixpkgs-terraform/nixpkgs-terraform-cli

go 1.21.7

require (
github.com/blang/semver/v4 v4.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/spf13/cobra v1.8.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
)
14 changes: 14 additions & 0 deletions nixpkgs-terraform-cli/go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
github.com/blang/semver v3.5.1+incompatible h1:cQNTCjp13qL8KC3Nbxr/y2Bqb63oX6wdnnjpJbkM4JQ=
github.com/blang/semver v3.5.1+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk=
github.com/blang/semver/v4 v4.0.0 h1:1PFHFE6yCCTv8C1TeyNNarDzntLi7wMI5i/pzqYIsAM=
github.com/blang/semver/v4 v4.0.0/go.mod h1:IbckMUScFkM3pff0VJDNKRiT6TG/YpiHIM2yvyW5YoQ=
github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
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.8.0 h1:7aJaZx1B85qltLMc546zn58BxxfZdR/W22ej9CFoEf0=
github.com/spf13/cobra v1.8.0/go.mod h1:WXLWApfZ71AjXPya3WOlMsY9yMs7YeiHhFVlvLyhcho=
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
15 changes: 15 additions & 0 deletions nixpkgs-terraform-cli/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/*
Copyright © 2024 NAME HERE <EMAIL ADDRESS>
*/
package main

import (
"github.com/stackbuilders/nixpkgs-terraform/nixpkgs-terraform-cli/cmd"
_ "github.com/stackbuilders/nixpkgs-terraform/nixpkgs-terraform-cli/cmd/update"
_ "github.com/stackbuilders/nixpkgs-terraform/nixpkgs-terraform-cli/cmd/publish"
)

func main() {
cmd.Execute()
}

0 comments on commit 535e36f

Please sign in to comment.