diff --git a/README.md b/README.md index b73f23a..397d96b 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ secrethub service init my-org/my-repo --permission read --desc my-app ### Binary -Download and extract the [latest release](https://github.com/keylockerbv/secrethub-http-proxy/releases/latest) of the SecretHub HTTP Proxy. Start it with your SecretHub credential: +Download and extract the [latest release](https://github.com/secrethub/secrethub-http-proxy/releases/latest) of the SecretHub HTTP Proxy. Start it with your SecretHub credential: ``` ./secrethub-http-proxy -C $(cat ~/.secrethub/credential) -p 8080 @@ -85,7 +85,7 @@ Deletes the entire secret and its history. ## BETA -This project is currently in beta and we'd love your feedback! Check out the [issues](https://github.com/keylockerbv/secrethub-http-proxy/issues) and feel free to suggest cool ideas, use cases, or improvements. +This project is currently in beta and we'd love your feedback! Check out the [issues](https://github.com/secrethub/secrethub-http-proxy/issues) and feel free to suggest cool ideas, use cases, or improvements. Because it's still in beta, you can expect to see some changes introduced. Pull requests are very welcome. @@ -99,7 +99,7 @@ Read more about this on our [blog post](). Get the source code: ``` -git clone https://github.com/keylockerbv/secrethub-http-proxy +git clone https://github.com/secrethub/secrethub-http-proxy ``` Build it using: diff --git a/cmd/secrethub-http-proxy/main.go b/cmd/secrethub-http-proxy/main.go index dae9a56..e7341a0 100644 --- a/cmd/secrethub-http-proxy/main.go +++ b/cmd/secrethub-http-proxy/main.go @@ -8,7 +8,7 @@ import ( "os/signal" "syscall" - "github.com/keylockerbv/secrethub-http-proxy/pkg/restproxy" + "github.com/secrethub/secrethub-http-proxy/pkg/restproxy" "github.com/secrethub/secrethub-go/pkg/secrethub" "golang.org/x/crypto/ssh/terminal" ) diff --git a/go.mod b/go.mod index 8c3d50b..59d7fc3 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/keylockerbv/secrethub-http-proxy +module github.com/secrethub/secrethub-http-proxy require ( github.com/gorilla/mux v1.7.0