File tree 11 files changed +17
-17
lines changed
11 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 1
1
FROM golang:1.9.1
2
2
3
- WORKDIR /go/src/github.com/koding/ropecount
3
+ WORKDIR /go/src/github.com/ropelive/count
4
4
5
5
ADD . .
6
6
7
- RUN /go/src/github.com/koding/ropecount /build.sh
7
+ RUN /go/src/github.com/ropelive/count /build.sh
Original file line number Diff line number Diff line change 3
3
set -euo pipefail
4
4
5
5
export GOPATH=$(
6
- cd " $( dirname " $0 " ) " /../../../.. # src/github.com/koding/ropecount
6
+ cd " $( dirname " $0 " ) " /../../../.. # src/github.com/ropelive/count
7
7
pwd
8
8
)
9
9
export GOBIN=${GOBIN:- ${GOPATH} / bin}
@@ -15,7 +15,7 @@ go-install() {
15
15
}
16
16
17
17
export COMMANDS=(
18
- $( go list github.com/koding/ropecount /... | grep -v vendor)
18
+ $( go list github.com/ropelive/count /... | grep -v vendor)
19
19
)
20
20
21
21
go-install ${COMMANDS[@]}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
11
11
"github.com/go-kit/kit/sd"
12
12
"github.com/go-kit/kit/sd/consul"
13
13
"github.com/go-kit/kit/sd/lb"
14
- "github.com/koding/ropecount /services/compactor"
14
+ "github.com/ropelive/count /services/compactor"
15
15
)
16
16
17
17
// NewCompactor returns a service that's load-balanced over instances of
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
11
11
"github.com/go-kit/kit/sd"
12
12
"github.com/go-kit/kit/sd/consul"
13
13
"github.com/go-kit/kit/sd/lb"
14
- "github.com/koding/ropecount /services/counter"
14
+ "github.com/ropelive/count /services/counter"
15
15
)
16
16
17
17
// NewCounter returns a service that's load-balanced over instances of counter
Original file line number Diff line number Diff line change 6
6
"time"
7
7
8
8
"github.com/go-kit/kit/log"
9
- "github.com/koding/ropecount /pkg"
10
- "github.com/koding/ropecount /services/compactor"
9
+ "github.com/ropelive/count /pkg"
10
+ "github.com/ropelive/count /services/compactor"
11
11
)
12
12
13
13
func main () {
Original file line number Diff line number Diff line change 4
4
"net/http"
5
5
6
6
"github.com/go-kit/kit/log"
7
- "github.com/koding/ropecount /pkg"
8
- "github.com/koding/ropecount /services/counter"
7
+ "github.com/ropelive/count /pkg"
8
+ "github.com/ropelive/count /services/counter"
9
9
)
10
10
11
11
func main () {
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ services:
5
5
image : ropelive/countbase
6
6
restart : on-failure
7
7
volumes :
8
- - .:/go/src/github.com/koding/ropecount
8
+ - .:/go/src/github.com/ropelive/count
9
9
- logvolume01:/var/log
10
10
11
11
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import (
10
10
"github.com/go-kit/kit/log"
11
11
"github.com/go-kit/kit/log/level"
12
12
"github.com/koding/redis"
13
- "github.com/koding/ropecount /pkg/mongodb"
13
+ "github.com/ropelive/count /pkg/mongodb"
14
14
)
15
15
16
16
// App is the context for services.
Original file line number Diff line number Diff line change 7
7
8
8
redigo "github.com/garyburd/redigo/redis"
9
9
"github.com/koding/redis"
10
- "github.com/koding/ropecount /pkg"
11
- "github.com/koding/ropecount /pkg/mongodb"
10
+ "github.com/ropelive/count /pkg"
11
+ "github.com/ropelive/count /pkg/mongodb"
12
12
)
13
13
14
14
// Service is a simple interface for compactor operations.
Original file line number Diff line number Diff line change 9
9
"time"
10
10
11
11
"github.com/koding/redis"
12
- "github.com/koding/ropecount /pkg"
13
- "github.com/koding/ropecount /pkg/mongodb"
12
+ "github.com/ropelive/count /pkg"
13
+ "github.com/ropelive/count /pkg/mongodb"
14
14
)
15
15
16
16
func withApp (fn func (app * pkg.App )) {
Original file line number Diff line number Diff line change 4
4
"context"
5
5
"time"
6
6
7
- "github.com/koding/ropecount /pkg"
7
+ "github.com/ropelive/count /pkg"
8
8
)
9
9
10
10
// Service is the interface for counter operations.
You can’t perform that action at this time.
0 commit comments