Sheharyar
Sheharyar

Reputation: 75820

Octopress app on Heroku shows only a Blank page

This is my first time using Octopress, although I've deployed multiple rails apps to heroku. Whatever I do, I unable to deploy my Octopress app to heroku. When I do, all I get is a blank page.

What I did was:

git clone git://github.com/imathis/octopress.git
cd octopress
bundle install
rake install
rake preview    # working on localhost
heroku create
git add .
git commit -m "yo"
git push heroku master
heroku open

But it always shows a blank page. I'm obviously missing something very stupid. Any help would be appreciated.

Upvotes: 2

Views: 884

Answers (1)

Alex Baban
Alex Baban

Reputation: 11732

I had the same problem. You will need to push at least one blog post. Once you have your first post, your blog will come up instead of the blank page. When you add more posts and/or modify existing ones don't forget to use "rake generate" (like I forgot and then did not understand why the posts on Heroku don't update).

Upvotes: 3

Related Questions