Skip to content

Commit 4b2fd84

Browse files
Update references from cogolabs/beyond to presbrey/beyond (#10)
Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
1 parent 0bb5f1e commit 4b2fd84

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM golang:1.18.1
22

3-
ADD . /go/src/github.com/cogolabs/beyond
4-
WORKDIR /go/src/github.com/cogolabs/beyond
3+
ADD . /go/src/github.com/presbrey/beyond
4+
WORKDIR /go/src/github.com/presbrey/beyond
55
RUN go install ./cmd/httpd
66

77
WORKDIR /go

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
[![Build Status](https://travis-ci.org/cogolabs/beyond.svg?branch=master)](https://travis-ci.org/cogolabs/beyond)
2-
[![codecov](https://codecov.io/gh/cogolabs/beyond/branch/master/graph/badge.svg)](https://codecov.io/gh/cogolabs/beyond)
3-
[![Docker](https://github.com/cogolabs/beyond/actions/workflows/docker-publish.yml/badge.svg)](https://github.com/cogolabs/beyond/actions/workflows/docker-publish.yml)
4-
[![Go Report Card](https://goreportcard.com/badge/github.com/cogolabs/beyond)](https://goreportcard.com/report/github.com/cogolabs/beyond)
1+
[![Build Status](https://travis-ci.org/presbrey/beyond.svg?branch=master)](https://travis-ci.org/presbrey/beyond)
2+
[![codecov](https://codecov.io/gh/presbrey/beyond/branch/master/graph/badge.svg)](https://codecov.io/gh/presbrey/beyond)
3+
[![Docker](https://github.com/presbrey/beyond/actions/workflows/docker-publish.yml/badge.svg)](https://github.com/presbrey/beyond/actions/workflows/docker-publish.yml)
4+
[![Go Report Card](https://goreportcard.com/badge/github.com/presbrey/beyond)](https://goreportcard.com/report/github.com/presbrey/beyond)
55
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
66

77
# beyond
@@ -21,15 +21,15 @@ Control access to services beyond your perimeter network. Deploy with split-DNS
2121

2222
## Install
2323
```
24-
$ docker pull cogolabs/beyond
24+
$ docker pull presbrey/beyond
2525
```
2626
or:
2727
```
28-
$ go get -u -x github.com/cogolabs/beyond
28+
$ go get -u -x github.com/presbrey/beyond
2929
```
3030
## Usage
3131
```
32-
$ docker run --rm -p 80:80 cogolabs/beyond httpd --help
32+
$ docker run --rm -p 80:80 presbrey/beyond httpd --help
3333
-401-code int
3434
status to respond when a user needs authentication (default 418)
3535
-404-message string

cmd/httpd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"net/http"
77
"time"
88

9-
"github.com/cogolabs/beyond"
9+
"github.com/presbrey/beyond"
1010
)
1111

1212
var (

docker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ func (ds *dockerServer) ServeHTTP(w http.ResponseWriter, r *http.Request) {
172172
// "access": [
173173
// {
174174
// "type": "repository",
175-
// "name": "cogolabs/beyond",
175+
// "name": "presbrey/beyond",
176176
// "actions": [
177177
// "pull"
178178
// ]

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/cogolabs/beyond
1+
module github.com/presbrey/beyond
22

33
go 1.18
44

0 commit comments

Comments
 (0)