Recently, facebook started offering official support to host facebook applications in the heroku cloud. I was just having a walkaround and thought of noting down some worthwhile things that could save few hours for a begginer.
By the way, this post is exclusively for those who use ubuntu and are n00b just like me.
1. Initially, just follow the immaturely documented instructions and install the heroku toolbelt.
Ubuntu Linux -- http://toolbelt.herokuapp.com/ linux/readme
2. Now go to your ubuntu terminal and login with your credentials to upload the ssh keys
>$ heroku login
3. Bang! Errors? - Step 2 might not work for you if you don't have some dependancy packages installed in your ubuntu. First browse to the /usr/bin folder then ask you to if you still have some error like:
heroku /command/run.rb:1:in `require': no such file to load -- readline (LoadError)
Here you are missing ruby . You can install ruby by typing the following lines in the terminal
>$ apt-get install libreadline-ruby
4. Once you are done try again to with the login commands and you are good to go.
By the way, this post is exclusively for those who use ubuntu and are n00b just like me.
1. Initially, just follow the immaturely documented instructions and install the heroku toolbelt.
Ubuntu Linux -- http://toolbelt.herokuapp.com/
2. Now go to your ubuntu terminal and login with your credentials to upload the ssh keys
>$ heroku login
3. Bang! Errors? - Step 2 might not work for you if you don't have some dependancy packages installed in your ubuntu. First browse to the /usr/bin folder then ask you to if you still have some error like:
heroku /command/run.rb:1:in `require': no such file to load -- readline (LoadError)
Here you are missing ruby . You can install ruby by typing the following lines in the terminal
>$ apt-get install libreadline-ruby
4. Once you are done try again to with the login commands and you are good to go.
Comments
Post a Comment