Go to file
Kyle Isom 6f29ac4b03 Fixing links for blog entries. 2023-08-29 14:49:48 -07:00
nomad Fixing links for blog entries. 2023-08-29 14:49:48 -07:00
.gitignore even more additional logging 2023-08-29 13:08:56 -07:00
README.md initial import 2023-05-06 00:14:37 -07:00
go.mod add support for multiple RSS feeds 2023-08-29 12:03:43 -07:00
go.sum add support for multiple RSS feeds 2023-08-29 12:03:43 -07:00
main.go Fixing links for blog entries. 2023-08-29 14:49:48 -07:00
storage.go even yet more logs 2023-08-29 13:23:38 -07:00

README.md

nomadlink

nomadlink is a tool for syncing a Nomad RSS feed to pnut.

Nomad Pnut

The original version was running as a cronjob on a Raspberry Pi. I've modified it to run on a gokrazy instance.

Previous version instruction

Raspberry Pi setup

  1. Install go.

  2. Install mercurial: sudo apt install mercurial

  3. Fetch the repository and cd to the directory: hg clone https://hg.sr.ht/~kisom/nlink && cd nlink

  4. Make the config directory: mkdir -p ~/.config/nomadlink

  5. Create a new Pnut dev app from the Pnut developer page.

  6. Copy the creds.json file to ~/.config/nomadlink/creds.json and fill it out with the correct details from the Pnut dev page.

  7. Run go build.

  8. Verify the build works by running ./nlink -i -m. This will create the database and mark all the posts you currently have on nomad as already posted.

  9. Copy nlink to /usr/local/bin: sudo cp nlink /usr/local/bin/

  10. Edit your crontab (crontab -e) and add the following line:

*/15    *       *       *       *       /usr/local/bin/nlink -c /home/$USER/.config/nomadlink/creds.json -d /home/$USER/.config/nomadlink/nomadlink.db
  1. Eventually, posts should start showing up.

Optional

  1. Install postfix and set it up as a local site.
sudo apt install postfix bsd-mailx