Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: archiving this repo #215

Merged
merged 1 commit into from
Jan 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# D.I.V.E.

[![run smoke testcases](https://github.com/HugoByte/DIVE/actions/workflows/smoke-test.yaml/badge.svg)](https://github.com/HugoByte/DIVE/actions/workflows/smoke-test.yaml)
[![run smoke testcases](https://github.com/hugobyte/dive-alpha/actions/workflows/smoke-test.yaml/badge.svg)](https://github.com/hugobyte/dive-alpha/actions/workflows/smoke-test.yaml)

## About

Expand Down Expand Up @@ -54,18 +54,18 @@ Serving as an all-in-one solution, DIVE CLI eliminates the hassle of manually co
```
- Install on **`linux`**

Please find the latest release [here](https://github.com/HugoByte/DIVE/releases)
Please find the latest release [here](https://github.com/hugobyte/dive-alpha/releases)

Run below command to install DIVE CLI by mentioning latest release version and machine arch where dive is getting installed:

```shell
curl -L https://github.com/HugoByte/DIVE/releases/download/{latest-version}/dive-cli_{latest-version}_linux_{arch}.tar.gz | sudo tar -xzv -C /usr/local/bin/ dive
curl -L https://github.com/hugobyte/dive-alpha/releases/download/{latest-version}/dive-cli_{latest-version}_linux_{arch}.tar.gz | sudo tar -xzv -C /usr/local/bin/ dive
```

For example, if the latest version is v0.0.13-beta and system's architecture is amd64, the command will be:

```shell
curl -L https://github.com/HugoByte/DIVE/releases/download/v0.0.13-beta/dive-cli_v0.0.13-beta_linux_amd64.tar.gz | sudo tar xzv -C /usr/local/bin/ dive
curl -L https://github.com/hugobyte/dive-alpha/releases/download/v0.0.13-beta/dive-cli_v0.0.13-beta_linux_amd64.tar.gz | sudo tar xzv -C /usr/local/bin/ dive
```

Verify installation by running below command which should print out the dive version installed
Expand All @@ -76,7 +76,7 @@ Serving as an all-in-one solution, DIVE CLI eliminates the hassle of manually co

- Install on **`windows`**:
```bash
Invoke-WebRequest -Uri "https://github.com/HugoByte/DIVE/releases/download/{latest-version}/dive-cli_{latest-version}_windows_{arch}.tar.gz" -OutFile dive.tar.gz
Invoke-WebRequest -Uri "https://github.com/hugobyte/dive-alpha/releases/download/{latest-version}/dive-cli_{latest-version}_windows_{arch}.tar.gz" -OutFile dive.tar.gz
tar -xvzf dive.tar.gz
dive.exe
```
Expand Down
4 changes: 2 additions & 2 deletions cli/commands/bridge/bridge.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"fmt"
"os"

"github.com/hugobyte/dive/cli/commands/bridge/relays"
"github.com/hugobyte/dive/cli/common"
"github.com/hugobyte/dive-alpha/cli/commands/bridge/relays"
"github.com/hugobyte/dive-alpha/cli/common"
"github.com/spf13/cobra"
"golang.org/x/exp/slices"
)
Expand Down
4 changes: 2 additions & 2 deletions cli/commands/bridge/relays/btp.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"strconv"

"github.com/hugobyte/dive/cli/commands/chain/types"
"github.com/hugobyte/dive/cli/common"
"github.com/hugobyte/dive-alpha/cli/commands/chain/types"
"github.com/hugobyte/dive-alpha/cli/common"
"github.com/kurtosis-tech/kurtosis/api/golang/core/lib/enclaves"
"github.com/spf13/cobra"
)
Expand Down
4 changes: 2 additions & 2 deletions cli/commands/bridge/relays/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"slices"

"github.com/hugobyte/dive/cli/common"
"github.com/hugobyte/dive-alpha/cli/common"
)

var supportedChainsForBtp = []string{"icon", "eth", "hardhat"}
Expand All @@ -23,7 +23,7 @@ type Chains struct {

func initChains(chainA, chainB, serviceA, serviceB string, bridge bool) *Chains {
return &Chains{

chainA: strings.ToLower(chainA),
chainB: strings.ToLower(chainB),
chainAServiceName: serviceA,
Expand Down
2 changes: 1 addition & 1 deletion cli/commands/bridge/relays/ibc.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package relays
import (
"fmt"

"github.com/hugobyte/dive/cli/common"
"github.com/hugobyte/dive-alpha/cli/common"
"github.com/kurtosis-tech/kurtosis/api/golang/core/lib/enclaves"
"github.com/spf13/cobra"
)
Expand Down
6 changes: 3 additions & 3 deletions cli/commands/chain/chains.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"os"
"slices"

"github.com/hugobyte/dive/cli/commands/chain/types"
"github.com/hugobyte/dive/cli/common"
"github.com/hugobyte/dive-alpha/cli/commands/chain/types"
"github.com/hugobyte/dive-alpha/cli/common"
"github.com/spf13/cobra"
)

Expand All @@ -33,7 +33,7 @@ maintenance within the specified blockchain ecosystem.`,

if len(args) == 0 {
cmd.Help()

} else if !slices.Contains(cmd.ValidArgs, args[0]) {

diveContext.Log.SetOutput(os.Stderr)
Expand Down
2 changes: 1 addition & 1 deletion cli/commands/chain/types/archway.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package types
import (
"encoding/json"

"github.com/hugobyte/dive/cli/common"
"github.com/hugobyte/dive-alpha/cli/common"
"github.com/kurtosis-tech/kurtosis/api/golang/core/lib/enclaves"
"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cli/commands/chain/types/eth.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"os"
"strings"

"github.com/hugobyte/dive/cli/common"
"github.com/hugobyte/dive-alpha/cli/common"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cli/commands/chain/types/hardhat.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package types

import (
"github.com/hugobyte/dive/cli/common"
"github.com/hugobyte/dive-alpha/cli/common"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cli/commands/chain/types/icon.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"path/filepath"

"github.com/hugobyte/dive/cli/common"
"github.com/hugobyte/dive-alpha/cli/common"
"github.com/kurtosis-tech/kurtosis/api/golang/core/lib/enclaves"
"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cli/commands/chain/types/neutron.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package types
import (
"encoding/json"

"github.com/hugobyte/dive/cli/common"
"github.com/hugobyte/dive-alpha/cli/common"
"github.com/kurtosis-tech/kurtosis/api/golang/core/lib/enclaves"
"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cli/commands/clean/clean.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"fmt"
"os"

"github.com/hugobyte/dive/cli/common"
"github.com/hugobyte/dive-alpha/cli/common"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cli/commands/discord/discord.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package discord
import (
"os"

"github.com/hugobyte/dive/cli/common"
"github.com/hugobyte/dive-alpha/cli/common"
"github.com/spf13/cobra"
)

Expand Down
20 changes: 10 additions & 10 deletions cli/commands/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ package commands
import (
"os"

"github.com/hugobyte/dive/cli/commands/bridge"
"github.com/hugobyte/dive/cli/commands/chain"
"github.com/hugobyte/dive/cli/commands/clean"
"github.com/hugobyte/dive/cli/commands/discord"
"github.com/hugobyte/dive/cli/commands/tutorial"
"github.com/hugobyte/dive/cli/commands/twitter"
"github.com/hugobyte/dive/cli/commands/version"
"github.com/hugobyte/dive/cli/common"

"github.com/hugobyte/dive/cli/styles"
"github.com/hugobyte/dive-alpha/cli/commands/bridge"
"github.com/hugobyte/dive-alpha/cli/commands/chain"
"github.com/hugobyte/dive-alpha/cli/commands/clean"
"github.com/hugobyte/dive-alpha/cli/commands/discord"
"github.com/hugobyte/dive-alpha/cli/commands/tutorial"
"github.com/hugobyte/dive-alpha/cli/commands/twitter"
"github.com/hugobyte/dive-alpha/cli/commands/version"
"github.com/hugobyte/dive-alpha/cli/common"

"github.com/hugobyte/dive-alpha/cli/styles"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cli/commands/tutorial/tutorial.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package tutorial
import (
"os"

"github.com/hugobyte/dive/cli/common"
"github.com/hugobyte/dive-alpha/cli/common"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cli/commands/twitter/twitter.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package twitter
import (
"os"

"github.com/hugobyte/dive/cli/common"
"github.com/hugobyte/dive-alpha/cli/common"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cli/commands/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"os"

"github.com/fatih/color"
"github.com/hugobyte/dive/cli/common"
"github.com/hugobyte/dive-alpha/cli/common"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cli/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/hugobyte/dive/cli
module github.com/hugobyte/dive-alpha/cli

go 1.21

Expand Down
2 changes: 1 addition & 1 deletion cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Copyright © 2023 Hugobyte AI Labs<[email protected]>
package main

import (
"github.com/hugobyte/dive/cli/commands"
"github.com/hugobyte/dive-alpha/cli/commands"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions test/functional/dive_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"os/exec"
"testing"

dive "github.com/HugoByte/DIVE/test/functional"
"github.com/hugobyte/dive/cli/common"
"github.com/hugobyte/dive-alpha/cli/common"
dive "github.com/hugobyte/dive-alpha/test/functional"
"github.com/onsi/ginkgo/v2"
"github.com/onsi/gomega"
)
Expand Down
2 changes: 1 addition & 1 deletion test/functional/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/HugoByte/DIVE/test/functional
module github.com/hugobyte/dive-alpha/test/functional

go 1.21.0

Expand Down