Skip to content

Commit

Permalink
chore: prepare repo meta
Browse files Browse the repository at this point in the history
  • Loading branch information
moul committed Jul 14, 2019
1 parent cc2c521 commit 3bbaf75
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defaults: &defaults
working_directory: /go/src/moul.io/golang-repo-template
working_directory: /go/src/moul.io/quicssh
docker:
- image: circleci/golang:1.12
environment:
Expand Down
4 changes: 2 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ changelog:
- '^docs:'
- '^test:'
brew:
name: golang-repo-template
name: quicssh
github:
owner: moul
name: homebrew-moul
commit_author:
name: moul-bot
email: "[email protected]"
homepage: https://manfred.life/
description: "golang-repo-template"
description: "quicssh"
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
FROM golang:1.12-alpine as builder
RUN apk add --no-cache git gcc musl-dev make
ENV GO111MODULE=on
WORKDIR /go/src/moul.io/golang-repo-template
WORKDIR /go/src/moul.io/quicssh
COPY go.* ./
RUN go mod download
COPY . ./
RUN make install

# minimalist runtime
FROM alpine:3.10
COPY --from=builder /go/bin/golang-repo-template /bin/
ENTRYPOINT ["/bin/golang-repo-template"]
COPY --from=builder /go/bin/quicssh /bin/
ENTRYPOINT ["/bin/quicssh"]
CMD []
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
# golang-repo-template
# quicssh

:smile: golang-repo-template does
:smile: quicssh does

[![CircleCI](https://circleci.com/gh/moul/golang-repo-template.svg?style=shield)](https://circleci.com/gh/moul/golang-repo-template)
[![GoDoc](https://godoc.org/moul.io/golang-repo-template?status.svg)](https://godoc.org/moul.io/golang-repo-template)
[![License](https://img.shields.io/github/license/moul/golang-repo-template.svg)](https://github.com/moul/golang-repo-template/blob/master/LICENSE)
[![GitHub release](https://img.shields.io/github/release/moul/golang-repo-template.svg)](https://github.com/moul/golang-repo-template/releases)
[![Go Report Card](https://goreportcard.com/badge/moul.io/golang-repo-template)](https://goreportcard.com/report/moul.io/golang-repo-template)
[![Docker Metrics](https://images.microbadger.com/badges/image/moul/golang-repo-template.svg)](https://microbadger.com/images/moul/golang-repo-template)
[![CircleCI](https://circleci.com/gh/moul/quicssh.svg?style=shield)](https://circleci.com/gh/moul/quicssh)
[![GoDoc](https://godoc.org/moul.io/quicssh?status.svg)](https://godoc.org/moul.io/quicssh)
[![License](https://img.shields.io/github/license/moul/quicssh.svg)](https://github.com/moul/quicssh/blob/master/LICENSE)
[![GitHub release](https://img.shields.io/github/release/moul/quicssh.svg)](https://github.com/moul/quicssh/releases)
[![Go Report Card](https://goreportcard.com/badge/moul.io/quicssh)](https://goreportcard.com/report/moul.io/quicssh)
[![Docker Metrics](https://images.microbadger.com/badges/image/moul/quicssh.svg)](https://microbadger.com/images/moul/quicssh)
[![Made by Manfred Touron](https://img.shields.io/badge/made%20by-Manfred%20Touron-blue.svg?style=flat)](https://manfred.life/)

## Usage

```console
$ golang-repo-template -h
$ quicssh -h
...
```

## Install

```console
$ go get -u moul.io/golang-repo-template
$ go get -u moul.io/quicssh
```

## License

© 2019 [Manfred Touron](https://manfred.life) -
[Apache-2.0 License](https://github.com/moul/golang-repo-template/blob/master/LICENSE)
[Apache-2.0 License](https://github.com/moul/quicssh/blob/master/LICENSE)
2 changes: 1 addition & 1 deletion doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
// limitations under the License.

// Package main is ...
package main // import "moul.io/golang-repo-template"
package main // import "moul.io/quicssh"

0 comments on commit 3bbaf75

Please sign in to comment.