https://github.com/paulopacitti/bacon
🥓 cli to update the public IP of your domain registered in Porkbun
https://github.com/paulopacitti/bacon
cli dns domain porkbun porkbun-ddns
Last synced: 9 months ago
JSON representation
🥓 cli to update the public IP of your domain registered in Porkbun
- Host: GitHub
- URL: https://github.com/paulopacitti/bacon
- Owner: paulopacitti
- License: mit
- Created: 2023-10-09T11:36:05.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-20T16:21:31.000Z (about 2 years ago)
- Last Synced: 2024-06-21T15:22:09.982Z (about 2 years ago)
- Topics: cli, dns, domain, porkbun, porkbun-ddns
- Language: Go
- Homepage:
- Size: 60.5 KB
- Stars: 12
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bacon 🥓
A cli to update the public IP of your domain registered in [Porkbun](https://porkbun.com/).

This CLI is a wrapper around the [Porkbun API](https://porkbun.com/api/json/v3/documentation) to make it easier to update DNS with the machine's current public IP. Updating your domain registered to point to your Raspberry Pi would be a good example on why would you use this tool. Later, you could use a cronjob to call `bacon` periodically to update the your domain to point to your machine.
## Installing
Make sure you have `go` installed and that `$(go env GOPATH)/bin` is in your path, then:
```sh
go install github.com/paulopacitti/bacon@latest
```
## Usage
1. Add the keys and domain you want to update: `bacon config`
2. Get your public IP and update the domain that you configured previously: `bacon update`
Better explanation of each command can be found on `bacon -h`. The configuration will be saved in `$HOME/.config/bacon/config.json`.
## Contributing
Feel free to open PRs to fix bugs and add new features 🚀