axitkhurana / buster

Brute force static site generator for Ghost

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Buster doesn't generate rss anymore

zgrimshell opened this issue · 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.

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

commented

@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.