If you though getting started with Rails seemed easy from my first post, you haven’t tried out Heroku yet. Heroku is a hosted solution for Rails that comes with a browser based IDE. There’s nothing to install. It is so easy that it’s almost ridiculous. To me, this is the future of application hosting.
One of the remarkable things about Rails is that it lets you get up and running very quickly. Here is what you need to do to get your first application up and running on Heroku.
- Apply for an account on heroku (or mail me for an invitation)
- When you have gotten your account set up, go to the heroku page for your applications and log in.
- Press the big button labeled “Create New App”
- Click the button that look like a gear in the lower left hand corner and choose “generate” from the pop-up menu.
- Enter
scaffold article title:string author:string content:text
and click “run” - Press the yellow text labeled “Migrate now” to create the articles table in the database
- (Optional) Select “rake” from the gear pop-up menu and type
test
- (Optional) In the “rake” window, type
db:fixtures:load
to populate the database with test data - Press the button with two right arrows (“>>”) on the top right corner and you will be taken to your application, done being installed on the heroku server. Add
/articles
to the url to see your newly generated application - You can now play around with creating, retrieving, updating and deleting articles
- Click the button with two left arrows (“< <") on the bottom of the screen to return to the IDE
- (Optional) Make the application publicly available. Click the name of the application (“unnamed-xxxx” on the top left corner). Pick a name for your application, select “Public” to have it deployed to the net, and press rename
You now have a fully working, running, deployed Rails application. It requires no installation on your part. From here, you can follow the rest of my articles on Rails pretty much straightforward. Welcome aboard.
Just a tiny beware on outsourcing to EC2 in case you need more than 4 nines of uptime on your rails app.
Just a tiny beware on outsourcing to EC2 in case you need more than 4 nines of uptime on your rails app.
At the end of step five it says “Generate”. Should that be “Run”?
5. Enter scaffold article title:string author:string content:text and click “generateâ€
Hi Suezanne.
Yes, you're right. I've corrected the article. Thanks for the catch.
At the end of step five it says “Generate”. Should that be “Run”?
5. Enter scaffold article title:string author:string content:text and click “generateâ€
Hi Suezanne.
Yes, you’re right. I’ve corrected the article. Thanks for the catch.
I'd be more than happy to read drafts, run through example code, and whatnot. I've done a little bit of Rails work, but I'm enough of a noob that I'll be able to give good feedback on the clarity of the guide from the perspective of someone who has no real idea what he's doing.
Hi, Eve
Thanks for the offer. Let me know if there's any way I can make it easier. Do you think I should consolidate all the articles into one, for example?
Actually i already received an invite a while ago. But thanks for the offer. :)
As for running RailsCollab on it, make sure all the necessary gem's are installed. You might also have an issue with gd2, which is used to resize images for the company logo's and user avatar's – which you can disable quite easily by commenting out the relevant code.
I think it would be great if you could write one.
Thanks for this great tutorial mate
By far, Heroku is the most amazing web app I have used in the past year [maybe ever!] and I look forward to new developments.
If there is anything I can do to help [other than continuing to spread the word], please let me know.
This is really a nice app.I enjoyed using this. Thank you for sharing the knowledge with us.