Hacker News new | ask | show | jobs
by haney 4772 days ago
For #1 everything I've seen points to rails and Django having a nearly 1 to 1 correspondence. It's just preference for the most part.
1 comments

It really doesn't - Rails comes with a lot of things that Django does not by default. Off the top of my head, Django does not come with database migrations, environment based configuration or an asset pipeline. You can add those things to Django, but you need to either use a 3rd party library or roll it yourself. I believe Django database migrations are coming, based on South, but if they'll land in 1.6 I don't know.