diff --git a/README.md b/README.md index d25e8f0..d6e80ec 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@
- + @@ -18,7 +18,7 @@ This project is a fork of [k8sgpt](https://github.com/k8sgpt-ai/k8sgpt) and reli ### Pre-compiled executables -Get them [here](https://github.com/cigpt-ai/cigpt/releases) +Get them [here](https://github.com/matthisholleville/cigpt/releases) ### Verify installation diff --git a/cmd/analyze/analyze.go b/cmd/analyze/analyze.go index 997a119..c0c7a5e 100644 --- a/cmd/analyze/analyze.go +++ b/cmd/analyze/analyze.go @@ -8,10 +8,10 @@ import ( "time" "github.com/briandowns/spinner" - "github.com/cigpt-ai/cigpt/pkg/ai" - "github.com/cigpt-ai/cigpt/pkg/gitlab" - "github.com/cigpt-ai/cigpt/pkg/util" "github.com/fatih/color" + "github.com/matthisholleville/cigpt/pkg/ai" + "github.com/matthisholleville/cigpt/pkg/gitlab" + "github.com/matthisholleville/cigpt/pkg/util" "github.com/spf13/cobra" "github.com/spf13/viper" ) diff --git a/cmd/root.go b/cmd/root.go index 6f6e656..8a63a29 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -3,8 +3,8 @@ package cmd import ( "os" - "github.com/cigpt-ai/cigpt/cmd/analyze" - "github.com/cigpt-ai/cigpt/cmd/auth" + "github.com/matthisholleville/cigpt/cmd/analyze" + "github.com/matthisholleville/cigpt/cmd/auth" "github.com/spf13/cobra" "github.com/spf13/viper" ) diff --git a/container/Dockerfile b/container/Dockerfile index 33459dc..eb6b1bb 100644 --- a/container/Dockerfile +++ b/container/Dockerfile @@ -13,7 +13,7 @@ RUN go build -o /workspace/cigpt ./ FROM gcr.io/distroless/static AS production -LABEL org.opencontainers.image.source="https://github.com/cigpt-ai/cigpt" \ +LABEL org.opencontainers.image.source="https://github.com/matthisholleville/cigpt" \ org.opencontainers.image.url="https://cigpt.io" \ org.opencontainers.image.title="cigpt" \ org.opencontainers.image.vendor="the cigpt-ai maintainers" \ diff --git a/go.mod b/go.mod index f1c2fe3..2d5d2a0 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/cigpt-ai/cigpt +module github.com/matthisholleville/cigpt go 1.19 diff --git a/main.go b/main.go index 8661fc5..c4d43b0 100644 --- a/main.go +++ b/main.go @@ -1,6 +1,6 @@ package main -import "github.com/cigpt-ai/cigpt/cmd" +import "github.com/matthisholleville/cigpt/cmd" var version = "dev"