Skip to content

Commit 210d638

Browse files
committed
Move to DataShed GitHub
Update to version 1.6.0 Remove unnecessary .gitignore entries
1 parent 701b60f commit 210d638

File tree

10 files changed

+28
-31
lines changed

10 files changed

+28
-31
lines changed

.gitignore

-6
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@
1414
# Output of the go coverage tool, specifically when used with LiteIDE
1515
*.out
1616

17-
# Packages from go get
18-
github.com
19-
20-
# Complied binaries
21-
bin/
22-
2317
### macOS ###
2418
# General
2519
.DS_Store

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: go
22
go:
33
- '1.10'
4-
go_import_path: github.com/willjcj/param
4+
go_import_path: github.com/thedatashed/param
55

66
script:
77
- go test -v ./...
@@ -13,10 +13,10 @@ deploy:
1313
provider: releases
1414
skip_cleanup: true
1515
api_key:
16-
secure: t6uxlo/bpCWLGJ+Scpd4i23Na9QcZ4bK+EKUI7gud3Ww0fzU3CG2pvgjgA3DBDvQTa7FWn2//0xZ066jJGzHccEzsWajEuAyjfxooIqQIuH2BwYW2p2OFQO3vmK27Jwra2Ru+oackExFGl4Z0G3YcD7/vnB5BaajcyplvtQuPr9Dk7Bu0SAgBaOEXMqNu0YHk8VxlG3qvrQwt38QVW+5Us6mYsJ8G0AbQvPN6zoiBcBo3Uj6KfYzCi08/4C0FfXV3y5RkwDQfFdbz5hhldTZqPDs9rJko6eF6uhp2uR1tnOIWo4Hkg5Mlhdm5RMzwOpClmOc6LVvHQxhywfvWI8S//AlsBLAvUXm4rOQm5IPBSlSxLx4v/gTnfJ/KBTGbXWF4rPG/EcZDd57g+fzaPlJFVaYqdR4C45K5Zm9C2H7Q8qli5X65LvFTABx7SUo6pHeV/XH4SlKeWUSNLhzMJHBG8rHO4/YxWEENP9JktX6tqf9Dth+2U3/q3mmkuRjU3H8Whx8UYJQaDAopo/WHnNlvuWo2Lpwl5UEa7Gh5qPFVOFWN1LTbCdt6ToQCrqsw02gikA3yqq4HYzW8IYta4m3YaOiuqv5GHgUXdpOteSfjM8KUPR4e2d0dsMDXwQuJowkpGPOUG5QZ86EFJOli19PpmZxwdRvxTlT4jOfA8FR5Hc=
16+
secure: fe09o/awnojNgLd52dwjM/zOSkn/XlKF8QFumuXdr9s/6j3S14HQvWJ4wtoMIUjNokooI31TJbyG68hAEYtbwcWinbzRmODlBbTFS2rRJgiQPtymPEKUDyLwT++Dbaa5Lp9FaNPq5mYGVasS+BQX9kxJ90OxsChRobQ7QV8IuAt0k0H6KI1jsgiTWrt4t5zZhNbjHjFHnQ9grbqCOJBSp+niwCp62JFFHcmhgPQNLDu3KkXfkwuWyzmLqHrNOw1YNapthxEXWI8T1mMhiAi5jT42cKVjN/G6bcfjLNrB/zNlOBFdrOWnEu1ou6WRpj/2v/Ni8FnsWnBaINRGnR3cL3cYpjPH+/FcsHOra/xdrIadoxb3SH6Bx7CguAqW+hZ2Bw7SkqqfFkOXp+tMtcbGI00jT+iOZ0zNexvPE0GtCftMJFtbrfU2bKE9ysoOO0UoQ6uh+XV/iqOdcm4ltUQhh2zlWCfRv4DsxoRhm/9LZ4GkH3fNmwOcd2P0QN6yLvLtPc6WgPnD5wFhsiwgvmcUfzK5jvp+9Oc6bs1J/PWrmDXi7YgNtustY3+7bqqLO4tjHBLpRwPsZxpZY7YRJRUw2UHT+x9KWzGxYtq2FgZBQaU+aoNGvyZF2vSLQ/aLFgPIffqTVQ1KyGLyLvEYjLjh2pYr3f5i2LniTcexyTieRiA=
1717
file:
1818
- bin/param-darwin-amd64
1919
- bin/param-linux-amd64
2020
on:
2121
tags: true
22-
repo: WillJCJ/param
22+
repo: TheDataShed/param

README.md

+17-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# param
22

3-
[![Build Status](https://travis-ci.com/WillJCJ/param.svg?branch=master)](https://travis-ci.com/WillJCJ/param)
3+
[![Build Status](https://travis-ci.com/TheDataShed/param.svg?branch=master)](https://travis-ci.com/TheDataShed/param)
44

55
- [Introduction](#introduction)
66
- [Install](#install)
@@ -23,11 +23,11 @@ It also supports `bash` and `zsh` completion.
2323
## Install
2424

2525
You can install `param` by downloading the latest binary from the
26-
[Releases](https://github.com/WillJCJ/param/releases) page or by compiling
26+
[Releases](https://github.com/TheDataShed/param/releases) page or by compiling
2727
from source with `go`.
2828

2929
```console
30-
go get github.com/willjcj/param
30+
go get github.com/thedatashed/param
3131
```
3232

3333
This should build a binary at `$GOPATH/bin/param`
@@ -37,21 +37,21 @@ already on your `PATH`.
3737

3838
### Curl
3939

40-
Run the below command to download the 1.5.0 binary and add it to
40+
Run the below command to download the 1.6.0 binary and add it to
4141
`/usr/local/bin`.
4242

4343
#### Linux
4444

4545
```console
46-
curl -LO https://github.com/WillJCJ/param/releases/download/1.5.0/param-linux-amd64 && \
46+
curl -LO https://github.com/TheDataShed/param/releases/download/1.6.0/param-linux-amd64 && \
4747
chmod +x param-linux-amd64 && \
4848
sudo mv param-linux-amd64 /usr/local/bin/param
4949
```
5050

5151
#### MacOS
5252

5353
```console
54-
curl -LO https://github.com/WillJCJ/param/releases/download/1.5.0/param-darwin-amd64 && \
54+
curl -LO https://github.com/TheDataShed/param/releases/download/1.6.0/param-darwin-amd64 && \
5555
chmod +x param-darwin-amd64 && \
5656
sudo mv param-darwin-amd64 /usr/local/bin/param
5757
```
@@ -81,8 +81,8 @@ password123
8181

8282
#### Auto-completion
8383

84-
With shell completion enabled, you can press tab to auto-complete the parameter
85-
names.
84+
With shell completion enabled, you can press tab to auto-complete the
85+
parameter names.
8686

8787
### List
8888

@@ -119,8 +119,8 @@ $ param set parameter_name password456 -f
119119

120120
#### Auto-completion
121121

122-
With shell completion enabled, you can press tab to auto-complete the parameter
123-
names.
122+
With shell completion enabled, you can press tab to auto-complete the
123+
parameter names.
124124

125125
### Show
126126

@@ -134,8 +134,8 @@ password123
134134

135135
#### Auto-completion
136136

137-
With shell completion enabled, you can press tab to auto-complete the parameter
138-
names.
137+
With shell completion enabled, you can press tab to auto-complete the
138+
parameter names.
139139

140140
## Shell Completion
141141

@@ -190,8 +190,8 @@ They are generated by Cobra by running `go run build/generate_docs.go`.
190190

191191
## CI
192192

193-
`param` uses Travis CI to test each commit. It also handles GitHub releases when
194-
a new tag is pushed to GitHub.
193+
`param` uses Travis CI to test each commit. It also handles GitHub releases
194+
when a new tag is pushed to GitHub.
195195

196196
## TODO
197197

@@ -202,6 +202,9 @@ a new tag is pushed to GitHub.
202202
- Add a flag to specify parameter type.
203203
Currently only works with `SecureString`s.
204204
- Better logging and a verbose option to see what calls are made to AWS.
205+
- Copy timeout.
206+
- Configurable timeout for copying a parameter so it doesn't stay in
207+
the clipboard indefinitely.
205208
- Shell Completion
206209
- `zsh` completion doesn't seem to work.
207210
- Update or delete the bash completion cache after creating/deleting

build/build_binaries.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ FAILURES=""
88
if [ -z "${GOPATH}" ]; then
99
GOPATH="${HOME}/go"
1010
fi
11-
BIN_PATH="${GOPATH}/src/github.com/willjcj/param/bin"
11+
BIN_PATH="${GOPATH}/src/github.com/thedatashed/param/bin"
1212

1313
for PLATFORM in ${PLATFORMS}; do
1414
GOOS=${PLATFORM%/*}

build/generate_docs.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"path"
1010

1111
"github.com/spf13/cobra/doc"
12-
"github.com/willjcj/param/cmd"
12+
"github.com/thedatashed/param/cmd"
1313
)
1414

1515
func main() {
@@ -18,7 +18,7 @@ func main() {
1818
gopath = build.Default.GOPATH
1919
}
2020

21-
docsPath := path.Join(gopath, "src", "github.com", "willjcj", "param", "docs")
21+
docsPath := path.Join(gopath, "src", "github.com", "thedatashed", "param", "docs")
2222

2323
err := doc.GenMarkdownTree(cmd.RootCmd, docsPath)
2424
if err != nil {

cmd/copy.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package cmd
22

33
import (
44
"github.com/spf13/cobra"
5-
"github.com/willjcj/param/pkg/param"
5+
"github.com/thedatashed/param/pkg/param"
66
)
77

88
var verbose bool

cmd/list.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"strings"
55

66
"github.com/spf13/cobra"
7-
"github.com/willjcj/param/pkg/param"
7+
"github.com/thedatashed/param/pkg/param"
88
)
99

1010
var prefixes string

cmd/set.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package cmd
22

33
import (
44
"github.com/spf13/cobra"
5-
"github.com/willjcj/param/pkg/param"
5+
"github.com/thedatashed/param/pkg/param"
66
)
77

88
var force bool

cmd/show.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package cmd
22

33
import (
44
"github.com/spf13/cobra"
5-
"github.com/willjcj/param/pkg/param"
5+
"github.com/thedatashed/param/pkg/param"
66
)
77

88
var showCmd = &cobra.Command{

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
"github.com/willjcj/param/cmd"
4+
"github.com/thedatashed/param/cmd"
55
)
66

77
func main() {

0 commit comments

Comments
 (0)