Skip to content
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.

Move to github.com/secrethub/secrethub-http-proxy #17

Merged
merged 1 commit into from
Apr 29, 2019
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.

Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion cmd/secrethub-http-proxy/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down