Hacker News new | ask | show | jobs
by mod 3810 days ago
I haven't used AppEngine, but getting a heroku instance up takes less than an hour. If I did it more often, I'd think it could be done for a typical CRUD app in < 30 minutes.

An instance on DigitalOcean would be more like 2 hours.

There's no lockin that I've experienced on Heroku.

1 comments

The case I've always experienced, which is "<framework generator>; heroku create; git push heroku master" is a few seconds.
Setting up your requirements for heroku is not that simple. You have to create all the necessary information, like your requirements.txt etc. Turn on some level of real postgres, things of that nature.

Most of my time is spent consulting docs.

Nicer framework generators will produce dependency configuration, have params for what database backend to produce configuration for, and produce applications prepared to be 12-factor (log to stdout, accept configuration via environment) out of the box.

More generators than those will allow you to create reusable app templates which have these features so you don't have to repeat the (still very simple) configuration process for each app.