buster icon indicating copy to clipboard operation
buster copied to clipboard

Buster doesn't generate rss anymore

Open zgrimshell opened this issue 9 years ago • 2 comments

with latest changes in Ghost 0.6 series to rss, buster stopped generating rss feeds for new post. Would be very grateful to get this fixed. If you don't have time (as I don't) then I will be happy in my free time to patch this out. Cheers, and thanks for good work.

zgrimshell avatar Apr 27 '15 18:04 zgrimshell

I really hope @axitkhurana or anyone else fixes this :c

ishan-marikar avatar Jun 09 '15 23:06 ishan-marikar

@zgrimshell, @ishan-marikar

Buster doesn't generate rss anymore. However, you can generate by yourself using wget. For example,

// ghost.sh
GHOST_HOME="..."
RSS_HOME="$GHOST_HOME/rss"

alias bus_rss="wget -O $RSS_HOME/index.html http://localhost:2368/rss/index.html"
alias bus_gen="buster generate --domain=http://127.0.0.1:2368 --dir=$GHOST_HOME" --base='...'
alias bus_deploy='buster deploy --dir=$GHOST_HOME'

Save above lines to your alias file and then execute bus_rss alias to generate the rss file. Also Note that, buster automatically rename index.html to index.rss when you run buster generate.

1ambda avatar Oct 09 '15 05:10 1ambda