Skip to content

Commit

Permalink
chore: migrate to new org
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez committed Jan 9, 2025
1 parent 7454267 commit d3473c3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

.idea/
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
A Go library to handle [acme-dns](https://github.com/joohoi/acme-dns) client
communication and persistent account storage.

[![CI Status](https://github.com/cpu/goacmedns/workflows/Go/badge.svg)](https://github.com/cpu/goacmedns/actions?query=workflow%3AGo)
[![Lint Status](https://github.com/cpu/goacmedns/workflows/golangci-lint/badge.svg)](https://github.com/cpu/goacmedns/actions?query=workflow%3Agolangci-lint)
[![Coverage Status](https://coveralls.io/repos/github/cpu/goacmedns/badge.svg?branch=master)](https://coveralls.io/github/cpu/goacmedns?branch=master)
[![Go Report Card](https://goreportcard.com/badge/github.com/cpu/goacmedns)](https://goreportcard.com/report/github.com/cpu/goacmedns)
[![CI Status](https://github.com/nrdcg/goacmedns/workflows/Go/badge.svg)](https://github.com/nrdcg/goacmedns/actions?query=workflow%3AGo)
[![Lint Status](https://github.com/nrdcg/goacmedns/workflows/golangci-lint/badge.svg)](https://github.com/nrdcg/goacmedns/actions?query=workflow%3Agolangci-lint)
[![Go Report Card](https://goreportcard.com/badge/github.com/nrdcg/goacmedns)](https://goreportcard.com/report/github.com/nrdcg/goacmedns)

You may also be interested in a Python equivalent,
[pyacmedns](https://github.com/joohoi/pyacmedns/).
Expand All @@ -16,7 +15,7 @@ You may also be interested in a Python equivalent,
Once you have [installed Go](https://golang.org/doc/install) 1.15+ you can
install `goacmedns` with `go get`:

go get github.com/cpu/goacmedns/...
go get github.com/nrdcg/goacmedns/...

# Usage

Expand All @@ -29,7 +28,7 @@ package main
import (
"log"

"github.com/cpu/goacmedns"
"github.com/nrdcg/goacmedns"
)

const (
Expand Down Expand Up @@ -84,7 +83,7 @@ When using `goacmedns` with an ACME client hook it may be desirable to do the
initial ACME-DNS account creation and CNAME delegation ahead of time The
`goacmedns-register` command line utility provides an easy way to do this:

go install github.com/cpu/goacmedns/...
go install github.com/nrdcg/goacmedns/...
goacmedns-register -api http://10.0.0.1:4443 -domain example.com -allowFrom 192.168.100.1/24,1.2.3.4/32,2002:c0a8:2a00::0/40 -storage /tmp/example.storage.json

This will register an account for `example.com` that is only usable from the
Expand Down
2 changes: 1 addition & 1 deletion cmd/goacmedns-register/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"log"
"strings"

"github.com/cpu/goacmedns"
"github.com/nrdcg/goacmedns"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/cpu/goacmedns
module github.com/nrdcg/goacmedns

go 1.15

0 comments on commit d3473c3

Please sign in to comment.