[Answer]-Helpful resource for django on google app engine beginner

1👍

Look for docs on django-nonrel. I don’t know of much great documentation, but you can probably find docs pretty easily on Google.

The latest repo is here: https://github.com/django-nonrel

0👍

I am not sure if Django is your best solution. It is a very good framework but I don’t use it anymore for 2 main reasons:

  1. It is bigger than other, and therefore heavier than you need.
  2. It is not well supported in App Engine, so you have to use an old version (norel)

If you are a beginner, I would recommend you look this open source project that has a lot of amazing features well implemented where you can learn how they do it.

That project is using the last technology supported in Google App Engine and has a lot of contributors.

👤coto

0👍

Read up on django-nonrel’s documentation if you haven’t already. I remember having some trouble setting it up, but I’m afraid I can’t recall what the exact problem was (you might need to run your dev server with dev_appserver.py . instead of manage.py runserver). Once I got it up and running, though, it worked like a charm.

Leave a comment