Skip to content

Commit 30b7754

Browse files
change project from digirocket to quickstart
1 parent 8b77983 commit 30b7754

15 files changed

Lines changed: 74 additions & 79 deletions

File tree

.goreleaser.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: 2
22

3-
project_name: digiRocket
3+
project_name: quickstart
44

55
env:
66
- GO111MODULE=on
@@ -99,7 +99,7 @@ checksum:
9999
release:
100100
github:
101101
owner: TPIsoftwareOSPO
102-
name: digiRocket
102+
name: quickstart
103103
name_template: "Release {{ .Tag }}"
104104

105105

@@ -108,7 +108,7 @@ homebrew_casks:
108108
repository:
109109
owner: TPIsoftwareOSPO
110110
name: homebrew-tap
111-
homepage: "https://github.com/TPIsoftwareOSPO/digiRocket"
111+
homepage: "https://github.com/TPIsoftwareOSPO/quickstart"
112112
description: "Designed to orchestrate and execute a series of commands based on a declarative YAML configuration file."
113113
ids:
114114
- dgrkt-cli-archive
@@ -119,7 +119,7 @@ scoops:
119119
name: scoop-bucket
120120
name: dgrkt
121121
directory: bucket
122-
homepage: "https://github.com/TPIsoftwareOSPO/digiRocket"
122+
homepage: "https://github.com/TPIsoftwareOSPO/quickstart"
123123
description: "A command orchestration tool for declarative task execution."
124124
ids:
125125
- dgrkt-cli-archive

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# digiRocket(dgrkt)
1+
# quickstart(dgrkt)
22

33
`dgrkt` is a convenient command-line utility built with Go and Cobra. It's designed to orchestrate and execute a series of commands based on a declarative YAML configuration file, similar to how container orchestrators manage services. This tool simplifies the management of complex multi-command setups, making it ideal for local development environments, testing suites, or task automation.
44

@@ -51,7 +51,7 @@ scoop install dgrkt
5151

5252
### Portable Executable
5353

54-
Download the compressed file that matches your system from [release](https://github.com/TPIsoftwareOSPO/digiRocket/releases).
54+
Download the compressed file that matches your system from [release](https://github.com/TPIsoftwareOSPO/quickstart/releases).
5555
The filename prefix will be `dgrkt-portable_`.
5656

5757
To run the portable executable, it must be in the same directory with the `dgrkt.yaml` file.

cmd/check.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package cmd
33
import (
44
"encoding/json"
55
"fmt"
6-
"github.com/TPIsoftwareOSPO/digiRocket/app"
7-
"github.com/TPIsoftwareOSPO/digiRocket/config"
8-
"github.com/TPIsoftwareOSPO/digiRocket/utils"
6+
"github.com/TPIsoftwareOSPO/quickstart/app"
7+
"github.com/TPIsoftwareOSPO/quickstart/config"
8+
"github.com/TPIsoftwareOSPO/quickstart/utils"
99
"os"
1010

1111
"github.com/spf13/cobra"

cmd/down.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package cmd
22

33
import (
4-
"github.com/TPIsoftwareOSPO/digiRocket/app"
5-
"github.com/TPIsoftwareOSPO/digiRocket/procedure"
6-
"github.com/TPIsoftwareOSPO/digiRocket/utils"
4+
"github.com/TPIsoftwareOSPO/quickstart/app"
5+
"github.com/TPIsoftwareOSPO/quickstart/procedure"
6+
"github.com/TPIsoftwareOSPO/quickstart/utils"
77
"os"
88
"path/filepath"
99
"sync"

cmd/init.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ package cmd
22

33
import (
44
"fmt"
5-
"github.com/TPIsoftwareOSPO/digiRocket/app"
6-
"github.com/TPIsoftwareOSPO/digiRocket/config"
7-
"github.com/TPIsoftwareOSPO/digiRocket/utils"
5+
"github.com/TPIsoftwareOSPO/quickstart/app"
6+
"github.com/TPIsoftwareOSPO/quickstart/config"
7+
"github.com/TPIsoftwareOSPO/quickstart/utils"
88
"github.com/spf13/cobra"
99
"gopkg.in/yaml.v3"
1010
"os"

cmd/root.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package cmd
22

33
import (
4-
"github.com/TPIsoftwareOSPO/digiRocket/app"
5-
"github.com/TPIsoftwareOSPO/digiRocket/utils"
4+
"github.com/TPIsoftwareOSPO/quickstart/app"
5+
"github.com/TPIsoftwareOSPO/quickstart/utils"
66
"github.com/spf13/cobra"
77
"os"
88
)

cmd/up.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package cmd
22

33
import (
4-
"github.com/TPIsoftwareOSPO/digiRocket/app"
5-
"github.com/TPIsoftwareOSPO/digiRocket/config"
6-
"github.com/TPIsoftwareOSPO/digiRocket/procedure"
7-
"github.com/TPIsoftwareOSPO/digiRocket/utils"
4+
"github.com/TPIsoftwareOSPO/quickstart/app"
5+
"github.com/TPIsoftwareOSPO/quickstart/config"
6+
"github.com/TPIsoftwareOSPO/quickstart/procedure"
7+
"github.com/TPIsoftwareOSPO/quickstart/utils"
88
"github.com/spf13/cobra"
99
"os"
1010
"os/signal"

cmd/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package cmd
22

33
import (
44
"fmt"
5-
"github.com/TPIsoftwareOSPO/digiRocket/app"
6-
"github.com/TPIsoftwareOSPO/digiRocket/utils"
5+
"github.com/TPIsoftwareOSPO/quickstart/app"
6+
"github.com/TPIsoftwareOSPO/quickstart/utils"
77
"github.com/spf13/cobra"
88
)
99

config/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package config
22

33
import (
44
"fmt"
5-
"github.com/TPIsoftwareOSPO/digiRocket/app"
6-
"github.com/TPIsoftwareOSPO/digiRocket/utils"
5+
"github.com/TPIsoftwareOSPO/quickstart/app"
6+
"github.com/TPIsoftwareOSPO/quickstart/utils"
77
"github.com/spf13/viper"
88
"os"
99
"path/filepath"

go.mod

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,31 @@
1-
module github.com/TPIsoftwareOSPO/digiRocket
1+
module github.com/TPIsoftwareOSPO/quickstart
22

3-
go 1.24.2
3+
go 1.25.2
44

55
require (
66
github.com/chelnak/ysmrr v0.6.0
77
github.com/oliveagle/jsonpath v0.0.0-20180606110733-2e52cf6e6852
8-
github.com/spf13/cobra v1.9.1
9-
github.com/spf13/viper v1.20.1
8+
github.com/spf13/cobra v1.10.1
9+
github.com/spf13/viper v1.21.0
1010
gopkg.in/yaml.v3 v3.0.1
1111
)
1212

1313
require (
1414
github.com/fatih/color v1.18.0 // indirect
15-
github.com/fsnotify/fsnotify v1.8.0 // indirect
16-
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
15+
github.com/fsnotify/fsnotify v1.9.0 // indirect
16+
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
1717
github.com/inconshreveable/mousetrap v1.1.0 // indirect
1818
github.com/mattn/go-colorable v0.1.14 // indirect
1919
github.com/mattn/go-isatty v0.0.20 // indirect
20-
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
21-
github.com/sagikazarmark/locafero v0.7.0 // indirect
22-
github.com/sourcegraph/conc v0.3.0 // indirect
23-
github.com/spf13/afero v1.12.0 // indirect
24-
github.com/spf13/cast v1.7.1 // indirect
25-
github.com/spf13/pflag v1.0.6 // indirect
20+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
21+
github.com/sagikazarmark/locafero v0.11.0 // indirect
22+
github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect
23+
github.com/spf13/afero v1.15.0 // indirect
24+
github.com/spf13/cast v1.10.0 // indirect
25+
github.com/spf13/pflag v1.0.10 // indirect
2626
github.com/subosito/gotenv v1.6.0 // indirect
27-
go.uber.org/atomic v1.9.0 // indirect
28-
go.uber.org/multierr v1.9.0 // indirect
27+
go.yaml.in/yaml/v3 v3.0.4 // indirect
2928
golang.org/x/sys v0.29.0 // indirect
3029
golang.org/x/term v0.28.0 // indirect
31-
golang.org/x/text v0.21.0 // indirect
30+
golang.org/x/text v0.28.0 // indirect
3231
)

0 commit comments

Comments
 (0)