Skip to content

Commit

Permalink
chore: replace all REPLACE_ME
Browse files Browse the repository at this point in the history
  • Loading branch information
moul committed Jul 5, 2019
1 parent 692bd7e commit 10d41bc
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 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/REPLACE_ME
working_directory: /go/src/moul.io/golang-repo-template
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: REPLACE_ME
name: golang-repo-template
github:
owner: moul
name: homebrew-moul
commit_author:
name: moul-bot
email: "m+bot@42.am"
homepage: https://manfred.life/
description: "REPLACE_ME"
description: "golang-repo-template"
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/REPLACE_ME
WORKDIR /go/src/moul.io/golang-repo-template
COPY go.* ./
RUN go mod download
COPY . ./
RUN make install

# minimalist runtime
FROM alpine
COPY --from=builder /go/bin/REPLACE_ME /bin/
ENTRYPOINT ["/bin/REPLACE_ME"]
COPY --from=builder /go/bin/golang-repo-template /bin/
ENTRYPOINT ["/bin/golang-repo-template"]
CMD []
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module moul.io/REPLACE_ME
module moul.io/golang-repo-template

go 1.12
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main // import "moul.io/REPLACE_ME"
package main // import "moul.io/golang-repo-template"

import "fmt"

Expand Down

0 comments on commit 10d41bc

Please sign in to comment.