Reputation: 107292
I'm about to start a new django project with friends. This project includes a website, API to mobile applications, clearing and billing, internationalization aspects etc...
What are the pros and cons for using Google App Engine vs. a regular web hosting solution?
Of course GAE documentation praises their support for django, but I would like to hear from people with first hand experience.
Here's a general discussion regarding pros\cons for GAE. I'm more interested in the details regarding django (and related libraries) support.
Upvotes: 5
Views: 854
Reputation: 595
What sold me on Google App Engine vs hosting a Django app were the following points:
You also get easy access to cron, offline tasks and email. Oh, and you can also use Django's templating engine, which is one of my favorite bits of Django.
Cons:
I would highly recommend GAE if you have a small team - which sounds like you do, and you do not like to mess around with configuring servers. .
Best of luck!
Upvotes: 8
Reputation: 4198
Its free quotas are quite generous, so you wouldn't be paying anything until your website starts receiving a considerable amount of visits. Which makes it ideal for a project like yours, where you might not know whether it's going to be a success.
Upvotes: 3