Code for Thought

A Basic Guide to Octopress

Here are some commands to remember to help your octopress experience go smoothly!

1
2
# Creating a new post - pages can be found in source/_posts.
rake new_post['Title of the Post']
1
2
# Creating a new page 
rake new_page['Title of the page']
1
2
# Previewing your work at http://localhost:4000
rake preview
1
2
3
# Publishing Posts
rake generate
rake deploy

I hope to add to this as I continue to find new octopress commands useful.