Skip to content

Commit 902eb9f

Browse files
committed
s/moul/ultreme
1 parent e6588de commit 902eb9f

File tree

11 files changed

+56
-79
lines changed

11 files changed

+56
-79
lines changed

.circleci/config.yml

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,5 @@
11
version: 2.1
22

3-
executors:
4-
golang:
5-
working_directory: /go/src/moul.io/golang-repo-template
6-
docker:
7-
- image: circleci/golang:1.12
8-
environment:
9-
GO111MODULE: "on"
10-
DOCKER_IMAGE: moul/golang-repo-template
11-
12-
docker:
13-
docker:
14-
- image: docker:18.06.3-ce-git
15-
163
orbs:
174
codecov: codecov/[email protected]
185
moul: moul/[email protected]
@@ -23,7 +10,11 @@ orbs:
2310

2411
jobs:
2512
go-build:
26-
executor: golang
13+
working_directory: /go/src/ultre.me/golang-repo-template
14+
docker:
15+
- image: circleci/golang:1.12
16+
environment:
17+
GO111MODULE: "on"
2718
steps:
2819
- checkout
2920
- retry/install
@@ -37,13 +28,14 @@ jobs:
3728
file: coverage.txt
3829

3930
docker-build:
40-
executor: docker
31+
docker:
32+
- image: docker:18.06.3-ce-git
4133
steps:
4234
- checkout
4335
- setup_remote_docker:
4436
docker_layer_caching: true
4537
- docker/build:
46-
image: moul/golang-repo-template
38+
image: ultreme/golang-repo-template
4739
#- docker/dockerlint
4840

4941
workflows:

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @moul
1+
* @ultreme

.github/FUNDING.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#github: ["moul"]
2-
patreon: moul
3-
open_collective: moul
4-
custom:
5-
- "https://www.buymeacoffee.com/moul"
6-
- "https://manfred.life/donate"
1+
#github: ["ultreme"]
2+
#patreon: ultreme
3+
open_collective: ultreme
4+
#custom:
5+
#- "https://www.buymeacoffee.com/ultreme"
6+
#- "https://ultre.me/donate"

.goreleaser.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ changelog:
3232
brew:
3333
name: golang-repo-template
3434
github:
35-
owner: moul
36-
name: homebrew-moul
35+
owner: ultreme
36+
name: homebrew-ultreme
3737
commit_author:
38-
name: moul-bot
39-
email: "m+bot@42.am"
40-
homepage: https://manfred.life/
38+
name: ultreme-bot
39+
email: "bot@ultre.me"
40+
homepage: https://ultre.me"
4141
description: "golang-repo-template"

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ARG VERSION
77
FROM golang:1.12-alpine as builder
88
RUN apk add --no-cache git gcc musl-dev make
99
ENV GO111MODULE=on
10-
WORKDIR /go/src/moul.io/golang-repo-template
10+
WORKDIR /go/src/ultre.me/golang-repo-template
1111
COPY go.* ./
1212
RUN go mod download
1313
COPY . ./
@@ -18,13 +18,13 @@ FROM alpine:3.10
1818
LABEL org.label-schema.build-date=$BUILD_DATE \
1919
org.label-schema.name="golang-repo-template" \
2020
org.label-schema.description="" \
21-
org.label-schema.url="https://moul.io/golang-repo-template/" \
21+
org.label-schema.url="https://ultre.me/golang-repo-template/" \
2222
org.label-schema.vcs-ref=$VCS_REF \
23-
org.label-schema.vcs-url="https://github.com/moul/golang-repo-template" \
24-
org.label-schema.vendor="Manfred Touron" \
23+
org.label-schema.vcs-url="https://github.com/ultreme/golang-repo-template" \
24+
org.label-schema.vendor="Ultreme M1ch3l" \
2525
org.label-schema.version=$VERSION \
2626
org.label-schema.schema-version="1.0" \
27-
org.label-schema.cmd="docker run -i -t --rm moul/golang-repo-template" \
27+
org.label-schema.cmd="docker run -i -t --rm ultreme/golang-repo-template" \
2828
org.label-schema.help="docker exec -it $CONTAINER golang-repo-template --help"
2929
COPY --from=builder /go/bin/golang-repo-template /bin/
3030
ENTRYPOINT ["/bin/golang-repo-template"]

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2019 Manfred Touron
189+
Copyright 2019 Ultreme M1ch3l
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GO ?= go
2-
DOCKER_IMAGE ?= moul/golang-repo-template
2+
DOCKER_IMAGE ?= ultreme/golang-repo-template
33

44
.PHONY: install
55
install:

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
:smile: golang-repo-template
44

5-
[![CircleCI](https://circleci.com/gh/moul/golang-repo-template.svg?style=shield)](https://circleci.com/gh/moul/golang-repo-template)
6-
[![GoDoc](https://godoc.org/moul.io/golang-repo-template?status.svg)](https://godoc.org/moul.io/golang-repo-template)
7-
[![License](https://img.shields.io/github/license/moul/golang-repo-template.svg)](https://github.com/moul/golang-repo-template/blob/master/LICENSE)
8-
[![GitHub release](https://img.shields.io/github/release/moul/golang-repo-template.svg)](https://github.com/moul/golang-repo-template/releases)
9-
[![Go Report Card](https://goreportcard.com/badge/moul.io/golang-repo-template)](https://goreportcard.com/report/moul.io/golang-repo-template)
10-
[![CodeFactor](https://www.codefactor.io/repository/github/moul/golang-repo-template/badge)](https://www.codefactor.io/repository/github/moul/golang-repo-template)
11-
[![codecov](https://codecov.io/gh/moul/golang-repo-template/branch/master/graph/badge.svg)](https://codecov.io/gh/moul/golang-repo-template)
12-
[![Docker Metrics](https://images.microbadger.com/badges/image/moul/golang-repo-template.svg)](https://microbadger.com/images/moul/golang-repo-template)
13-
[![Sourcegraph](https://sourcegraph.com/github.com/moul/golang-repo-template/-/badge.svg)](https://sourcegraph.com/github.com/moul/golang-repo-template?badge)
14-
[![Made by Manfred Touron](https://img.shields.io/badge/made%20by-Manfred%20Touron-blue.svg?style=flat)](https://manfred.life/)
5+
[![CircleCI](https://circleci.com/gh/ultreme/golang-repo-template.svg?style=shield)](https://circleci.com/gh/ultreme/golang-repo-template)
6+
[![GoDoc](https://godoc.org/ultre.me/golang-repo-template?status.svg)](https://godoc.org/ultre.me/golang-repo-template)
7+
[![License](https://img.shields.io/github/license/ultreme/golang-repo-template.svg)](https://github.com/ultreme/golang-repo-template/blob/master/LICENSE)
8+
[![GitHub release](https://img.shields.io/github/release/ultreme/golang-repo-template.svg)](https://github.com/ultreme/golang-repo-template/releases)
9+
[![Go Report Card](https://goreportcard.com/badge/ultre.me/golang-repo-template)](https://goreportcard.com/report/ultre.me/golang-repo-template)
10+
[![CodeFactor](https://www.codefactor.io/repository/github/ultreme/golang-repo-template/badge)](https://www.codefactor.io/repository/github/ultreme/golang-repo-template)
11+
[![codecov](https://codecov.io/gh/ultreme/golang-repo-template/branch/master/graph/badge.svg)](https://codecov.io/gh/ultreme/golang-repo-template)
12+
[![Docker Metrics](https://images.microbadger.com/badges/image/ultreme/golang-repo-template.svg)](https://microbadger.com/images/ultreme/golang-repo-template)
13+
[![Sourcegraph](https://sourcegraph.com/github.com/ultreme/golang-repo-template/-/badge.svg)](https://sourcegraph.com/github.com/ultreme/golang-repo-template?badge)
14+
[![Made by Ultreme M1ch3l](https://img.shields.io/badge/made%20by-Ultreme%20M1ch3l-blue.svg?style=flat)](https://ultre.me/)
1515

1616

1717
## Usage
@@ -26,20 +26,20 @@ $ golang-repo-template -h
2626
### Using go
2727

2828
```console
29-
$ go get -u moul.io/golang-repo-template
29+
$ go get -u ultre.me/golang-repo-template
3030
```
3131

3232
### Using brew
3333

3434
```console
35-
$ brew install moul/moul/golang-repo-template
35+
$ brew install ultreme/ultreme/golang-repo-template
3636
```
3737

3838
### Download releases
3939

40-
https://github.com/moul/golang-repo-template/releases
40+
https://github.com/ultreme/golang-repo-template/releases
4141

4242
## License
4343

44-
© 2019 [Manfred Touron](https://manfred.life) -
45-
[Apache-2.0 License](https://github.com/moul/golang-repo-template/blob/master/LICENSE)
44+
© 2019 [Ultreme M1ch3l](https://ultre.me) -
45+
[Apache-2.0 License](https://github.com/ultreme/golang-repo-template/blob/master/LICENSE)

doc.go

Lines changed: 12 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © 2019 Manfred Touron <manfred.life>.
1+
// Copyright © 2019 Ultreme M1ch3l <ultre.me>.
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -12,29 +12,14 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
// message from the author:
16-
// +--------------------------------------------------------------+
17-
// | * * * ░░░░░░░░░░░░░░░░░░░░ Hello ░░░░░░░░░░░░░░░░░░░░░░░░░░|
18-
// +--------------------------------------------------------------+
19-
// | |
20-
// | ++ ______________________________________ |
21-
// | ++++ / \ |
22-
// | ++++ | | |
23-
// | ++++++++++ | Feel free to contribute to this | |
24-
// | +++ | | project or contact me on | |
25-
// | ++ | | manfred.life if you like this | |
26-
// | + -== ==| | project! | |
27-
// | ( <*> <*> | | |
28-
// | | | /| :) | |
29-
// | | _) / | | |
30-
// | | +++ / \______________________________________/ |
31-
// | \ =+ / |
32-
// | \ + |
33-
// | |\++++++ |
34-
// | | ++++ ||// |
35-
// | ___| |___ _||/__ __|
36-
// | / --- \ \| ||| __ _ ___ __ __/ /|
37-
// |/ | | \ \ / / ' \/ _ \/ // / / |
38-
// || | | | | | /_/_/_/\___/\_,_/_/ |
39-
// +--------------------------------------------------------------+
40-
package main // import "moul.io/golang-repo-template"
15+
// hej!
16+
// __ ______
17+
// / / / / / /_________ ____ ___ ___
18+
// / / / / / __/ ___/ _ \/ __ `__ \/ _ \
19+
// / /_/ / / /_/ / / __/ / / / / / __/
20+
// \______/______ \___/_/_____/__\___/
21+
// / |/ < /____/ /_ |__ // /
22+
// / /|_/ // / ___/ __ \ /_ </ /
23+
// / / / // / /__/ / / /__/ / /
24+
// /_/ /_//_/\___/_/ /_/____/_/
25+
package main // import "ultre.me/golang-repo-template"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module moul.io/golang-repo-template
1+
module ultre.me/golang-repo-template
22

33
go 1.12

0 commit comments

Comments
 (0)