Skip to content

Commit

Permalink
chore: archiving this repo
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyasbhat0 committed Jan 24, 2024
1 parent 8834deb commit 9e4643a
Show file tree
Hide file tree
Showing 21 changed files with 40 additions and 40 deletions.
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<hello@hugobyte.com>
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

0 comments on commit 9e4643a

Please sign in to comment.