This repository has been archived by the owner on Mar 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
README with installation and development instructions
- Loading branch information
Showing
1 changed file
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,37 @@ | ||
# secrethub-proxy | ||
# SecretHub Proxy | ||
|
||
> [SecretHub](https://secrethub.io) is a developer tool to help you keep database passwords, API tokens, and other secrets out of IT automation scripts. | ||
The SecretHub Proxy provides a RESTful interface to the SecretHub Client | ||
|
||
## Installation | ||
|
||
### Binary | ||
|
||
Download and extract the [latest release](https://github.com/keylockerbv/secrethub-proxy/releases/latest) of the SecretHub Proxy. Start it using: | ||
|
||
``` | ||
secrethub-proxy -C $(cat ~/.secrethub/credential) -p 8080 | ||
``` | ||
|
||
### Docker | ||
|
||
``` | ||
docker run -p 8080:8080 --name secrethub -v /$HOME/.secrethub:/secrethub secrethubio/proxy | ||
``` | ||
|
||
## Development | ||
|
||
Get the source code: | ||
|
||
``` | ||
mkdir -p $GOPATH/src/github.com/keylockerbv | ||
cd $GOPATH/src/github.com/keylockerbv | ||
git clone https://github.com/keylockerbv/secrethub-proxy | ||
``` | ||
|
||
Build it using: | ||
|
||
``` | ||
make build | ||
``` |