Skip to content
This repository was archived by the owner on Sep 26, 2025. It is now read-only.

Commit d961262

Browse files
author
Mrinal Wahal
committed
updated packages
1 parent 42bb0eb commit d961262

38 files changed

Lines changed: 77 additions & 77 deletions

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
github_token: ${{ secrets.GITHUB_TOKEN }}
3939
goos: ${{ matrix.goos }}
4040
goarch: ${{ matrix.goarch }}
41-
binary_name: cli
41+
# binary_name: cli
4242
ldflags: -X "github.com/${{ github.repository }}/cmd.Version=${{ env.VERSION }}" -X "github.com/${{ github.repository }}/nhost.REPOSITORY=${{ github.repository }}"
4343

4444
- name: Notify Community

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This changelog only contains ahigh level overview/abstract of major design and workflow execution changes up to CLI `v1.0.0` from earlier versions.
44

5-
If you want to read specific changelogs for every major (or breaking change), minor change and patch fix, read them on [release pages](http://github.com/nhost/cli-go/releases).
5+
If you want to read specific changelogs for every major (or breaking change), minor change and patch fix, read them on [release pages](http://github.com/nhost/cli/releases).
66

77
Changes:
88

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515

1616
Launch Blazingly Fast Development Environments For Your Nhost Stack
1717

18-
[![Build](https://github.com/nhost/cli-go/actions/workflows/build.yaml/badge.svg)](https://github.com/nhost/cli-go/actions/workflows/build.yaml)
19-
[![Release](https://github.com/nhost/cli-go/actions/workflows/release.yaml/badge.svg)](https://github.com/nhost/cli-go/actions/workflows/release.yaml)
20-
[![Go Report Card](https://goreportcard.com/badge/github.com/nhost/cli-go)](https://goreportcard.com/report/github.com/nhost/cli-go)
18+
[![Build](https://github.com/nhost/cli/actions/workflows/build.yaml/badge.svg)](https://github.com/nhost/cli/actions/workflows/build.yaml)
19+
[![Release](https://github.com/nhost/cli/actions/workflows/release.yaml/badge.svg)](https://github.com/nhost/cli/actions/workflows/release.yaml)
20+
[![Go Report Card](https://goreportcard.com/badge/github.com/nhost/cli)](https://goreportcard.com/report/github.com/nhost/cli)
2121
<a href="https://twitter.com/nhostio" target="_blank" rel="noopener noreferrer">
2222
<img src="https://img.shields.io/twitter/follow/nhostio?style=social" />
2323
</a>
@@ -56,7 +56,7 @@ Launch Blazingly Fast Development Environments For Your Nhost Stack
5656

5757
# Design
5858

59-
To properly understand the design philosophy adopted by Nhost for this CLI, [read this](https://github.com/nhost/cli-go/wiki/Design-Philosophy).
59+
To properly understand the design philosophy adopted by Nhost for this CLI, [read this](https://github.com/nhost/cli/wiki/Design-Philosophy).
6060

6161
## All-powerful `nhost` command
6262

@@ -96,7 +96,7 @@ Installing the CLI is easy.
9696
- If you version is less than `v1.0.0`, then download the latest version by executing the following in your terminal:
9797

9898
```
99-
curl -L https://raw.githubusercontent.com/nhost/cli-go/main/get.sh | bash
99+
curl -L https://raw.githubusercontent.com/nhost/cli/main/get.sh | bash
100100
```
101101

102102
This will autoatically detect your **operating system** and **platform/architecture**, and download it's equivalent binary in `/usr/local/bin` directory.
@@ -111,14 +111,14 @@ If your installed version is >= `v1.0.0`, then your CLI version already supports
111111

112112
If you have `curl` and `Windows Subsytem for Linux` in your windows environment, you can safely use the above command, and it should download the `.exe` variant of the binary in your current working directory.
113113

114-
However, if you do not have the above dependencies, then you can manually download the [latest release](https://github.com/nhost/cli-go/releases) binary depending on your platform architecture from [here](https://github.com/nhost/cli-go/releases).
114+
However, if you do not have the above dependencies, then you can manually download the [latest release](https://github.com/nhost/cli/releases) binary depending on your platform architecture from [here](https://github.com/nhost/cli/releases).
115115

116116
## Installing Using Go
117117

118118
If you have go installed in your system, and would like to download using that,
119119
please use the following command:
120120

121-
go get -u github.com/nhost/cli-go
121+
go get -u github.com/nhost/cli
122122

123123
This command will install the `nhost` executable binary
124124
along with its dependencies.

cmd/contact.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131
"runtime"
3232

3333
"github.com/manifoldco/promptui"
34-
"github.com/nhost/cli-go/nhost"
34+
"github.com/nhost/cli/nhost"
3535
"github.com/spf13/cobra"
3636
)
3737

cmd/dev.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ import (
3838
"syscall"
3939
"text/tabwriter"
4040

41-
"github.com/nhost/cli-go/environment"
42-
"github.com/nhost/cli-go/nhost"
43-
"github.com/nhost/cli-go/util"
41+
"github.com/nhost/cli/environment"
42+
"github.com/nhost/cli/nhost"
43+
"github.com/nhost/cli/util"
4444
"github.com/sirupsen/logrus"
4545
"github.com/spf13/cobra"
4646
)

cmd/env.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ import (
2929
"strings"
3030
"text/tabwriter"
3131

32-
"github.com/nhost/cli-go/nhost"
33-
"github.com/nhost/cli-go/util"
32+
"github.com/nhost/cli/nhost"
33+
"github.com/nhost/cli/util"
3434
"github.com/spf13/cobra"
3535
)
3636

cmd/execute.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import (
3535
"github.com/docker/docker/client"
3636
"github.com/docker/docker/pkg/stdcopy"
3737
"github.com/manifoldco/promptui"
38-
"github.com/nhost/cli-go/nhost"
38+
"github.com/nhost/cli/nhost"
3939
"github.com/spf13/cobra"
4040
)
4141

cmd/functions.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ import (
3434
"sync"
3535
"syscall"
3636

37-
"github.com/nhost/cli-go/environment"
38-
"github.com/nhost/cli-go/functions"
39-
"github.com/nhost/cli-go/nhost"
40-
"github.com/nhost/cli-go/util"
37+
"github.com/nhost/cli/environment"
38+
"github.com/nhost/cli/functions"
39+
"github.com/nhost/cli/nhost"
40+
"github.com/nhost/cli/util"
4141
"github.com/sirupsen/logrus"
4242
"github.com/spf13/cobra"
4343
)

cmd/init.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ import (
3131
"strings"
3232

3333
"github.com/manifoldco/promptui"
34-
"github.com/nhost/cli-go/hasura"
35-
"github.com/nhost/cli-go/nhost"
36-
"github.com/nhost/cli-go/util"
34+
"github.com/nhost/cli/hasura"
35+
"github.com/nhost/cli/nhost"
36+
"github.com/nhost/cli/util"
3737
"github.com/spf13/cobra"
3838
)
3939

cmd/link.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ import (
3333
"strings"
3434

3535
"github.com/manifoldco/promptui"
36-
"github.com/nhost/cli-go/nhost"
37-
"github.com/nhost/cli-go/util"
36+
"github.com/nhost/cli/nhost"
37+
"github.com/nhost/cli/util"
3838
"github.com/spf13/cobra"
3939
)
4040

0 commit comments

Comments
 (0)