No Description

Matthew Jorgensen 42c9b7e5d6 Update crontab example. Fixes #4 5 years ago
.gitignore 5860703077 Add .gitignore 5 years ago
LICENSE 2b10790408 Add LICENSE 5 years ago
README.md 42c9b7e5d6 Update crontab example. Fixes #4 5 years ago
config.go 6f0f4b1bf1 Add multiple account support 5 years ago
go.mod 5d42afd019 Remove madon dependency 5 years ago
go.sum 5d42afd019 Remove madon dependency 5 years ago
gof.go 76a167b311 Stop logging config data 5 years ago
gof.yaml.example f3eee88f2b Update config example 5 years ago

README.md

gof

gof is a command-line utility to post RSS/Atom feeds to the fediverse. It has first-class support for Pleroma, and thus should support Mastodon, too...

gof is for "go feediverse", "go fediverse", "go fedi", or really whatever you want. gof is a port of feediverse written in Go.

gof supports multiple feeds and multiple accounts.

usage

Before you can start using gof, you'll need to configure it. An example configuration can be found here. You can also just copy the example:

$ cd $REPO
$ cp config.yaml.example config.yaml
$ vim config.yaml # don't forget to edit it!

You'll need an access token as well. The configuration will be saved in $REPO/gof.yaml:

$ go build
$ ./gof

Once gof is configured, you might want to add it to your crontab:

*/30 * * * * cd /path/to/$REPO; gof

post format

You can specify how the message looks. The variables you have to work with are URL, Title, and Summary. You don't have to use all variables.

TODO: Summary isn't implemented yet.

An example template:

template: '{{.Title}}: {{.URL}}'

If you want the message to include line breaks, use YAML's multiline syntax:

template: |-
  {{.Title}}

  {{.URL}}

resources

Additional documentation can be found in gof's wiki.

Discussion and patches are welcome and should be directed to my public inbox for now: ~mjorgensen/public-inbox@lists.sr.ht. Please use --subject-prefix PATCH gof for clarity when sending patches.

Bugs, issues, planning, and tasks can all be found at the tracker: ~mjorgensen/gof