vote up 1 vote down star
4

I am a beginner in developing websites by Django. I run small discussion websites similar to SO.

I have an account at Bluehost which has been a nightmare in developing by Django. I have found that Webfaction and Google App Engine seems to be the best choices for Django.

However, I am not sure which one is the best for me.

Is Google App Engine better than Webfaction in running small websites?

flag

5 Answers

vote up 2 vote down check

A bit late with my answer, but nevertheless... I am Django beginner and have my first Django App up and running at GAE. It was App Engine Patch that made it happen. Using it you have django admin and several other apps available out of the box. If you'd like to try it, go for the trunk version. This project is reasonably well documented and have responsive community.

link|flag
@Alexander: Excellent answers are never too late :) Thank you for your answer! – Masi Jun 13 at 14:26
@Alexander: Did you use an existing Django code? It seems that Madewulf's statement "most apps available for django will not work on GAE since these apps use the relational data model" is not true anymore. – Masi Jun 13 at 14:29
I coded my app myself. Madewulf is right: porting existing Django app to AE requires effort, even with a help of AEP. Just look into project's discussion group. Some frameworks are already ported and some are written from scratch like gae-full-text-search.appspot.com from AEP authors. Authors are going to build a native port of Django to AEP, see code.djangoproject.com/wiki/AppEngine Unfortunately, this is not a near-term task. – Alexander Vasiljev Jun 30 at 14:10
vote up 2 vote down

I can't speak for Google App Engine, but as a rather recent Django user myself I recently moved my development site over to a WebFaction server and I must say I was extremely impressed. They are extremely friendly to Django setups (among others) and the support staff answered any small problems I had promptly. I would definitely recommend them.

For other Django-friendly hosts, check out Djangofriendly.com.

link|flag
vote up 2 vote down

I'm a Google app engine developer, so I can't say much about webfaction, but as far as I have used it setting up a web app with app-engine is pretty straight forward¹. The support staff however is not quite good.

1- http://code.google.com/appengine/articles/django.html

link|flag
@Diones: Can you see your Django files in terminal in Google App Engine? I would like to see which files are in my project in Google App Engine in terminal. – Masi Apr 6 at 18:05
As far as I know, no. But I have never tried. – Diones Apr 6 at 18:16
There are source viewer libraries people have written. But App Engine is not source control - if you need to do this, UR Doin It Wrong. – Nick Johnson Apr 7 at 8:58
vote up 1 vote down

The thing to remember about GAE is that it works differently than a standard python install and apps you have may not work well (or at all) in that environment. The biggest difference is the database. While there are advantages to the non-relational database available with GAE, you need to treat it differently and there are many things that your code may be expecting your database to be able to do that it cannot.

If you are starting from scratch on an app, either platform would work fine. If you have an existing python app, getting it to work on GAE will take considerable work.

link|flag
vote up 1 vote down

If you have already written your django application, it may be really difficult to install it on Google App Engine, since you will have to adapt your data model. GAE uses big table, a (key,data) store, instead of a traditional relational model. It is great for performance but makes your programming more difficult (no built in many-to-many relationship handlers, for example).

Furthermore, most apps available for django will not work on GAE since these apps use the relational data model. The most obvious problem is that the great admin app of django will not work. Furthermore, GAE tends to make you use google accounts for identification. This can be circumvented but again, not using readily available django apps. This could be great for you, but it can be a hassle (for example, lots of user names are already taken at google).

So, my final advice is that, if you are a beginner, you should avoid GAE.

If you are based in Europe, djangohosting.ch is also a good choice, instead of webfaction.

link|flag
Is it better to use a hosting service which is located at Europe if my target audience is Europe? What are the benefits of having a host near my customers? – Masi Apr 7 at 8:15
You will have better response times, for you, but also for your users. Try to access sites in Australia (university sites for example), you will feel the pain. – madewulf Apr 7 at 8:23
@madewulf: Do you know how the hosting differs between Webfaction and djangohosting.ch? – Masi Apr 7 at 8:31
For me, it is almost the same thing, except that WebFaction is a lot bigger company. I am a customer of djangohosting.ch and can just say that their support is good. The only thing that ever concerned me was the 60 megs of ram limit for your app, but I never encountered problems until now. – madewulf Apr 7 at 8:40
It depends a lot on your application. Mine is heavily accessing the db and can consume up to 20MB . I have never tried to make stress tests with more than 5 concurrent requests. Maybe I should.... – madewulf Apr 7 at 8:52
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.