-
Notifications
You must be signed in to change notification settings - Fork 4
NDSA RSS
Posting items to the RSS feed for <ndsa.org> is a two step process. First, add the post to diglib.org and add it to the NDSA category. After the item as been posted in WordPress, go to your local computer and type the following:
cd ~/projects/ndsa.org
git pull
rake
This will grab the RSS feed from https://www.diglib.org/category/ndsa/feed/ and write new files in the _posts directory with the same content.
Next, check if the new post is working properly:
jekyll serve --incremental -l
Check to see if the post is displaying as expected at http://localhost:4000.
If everything is OK, add, commit, and push the data to GitHub to be "live."
git add .
git commit -am "Add a new post"
git push
Note: All of these commands assume you have completely set up Jekyll, the
SPREADSHEET_KEYenv variable (in.env, and you have an authentication token set (this is done when you runrakethe first time).