Basically, I think you should be aware of django tutorials as usual. You can create your models in the same way as usual, create your views and URLs, etc. Just skip all the bits about setting up the database - this is already done for you if djangoappengine is working correctly.
You do not need syncdb to get the database tables built - the application engine will do this automatically for you.
You are probably better off using the App Engine administrative system, which will probably be http: // localhost: 8080 / _ah / admin / (or: 8000 if that is where it works for you), and not in the django admin system .
You donβt even have to start with a database if you donβt want to. You should be able to run django-admin.py startapp myapp just fine to get started.
Then:
- edit view.py for this application and create a simple view function
- add the application to INSTALLED_APPS in the settings.py file
- create a url that points to your application in urls.py
- visit this url and see what happens
Good, so basically from page 3 of the textbook onwards, most of 1 & 2 can probably be skipped in this case.
Django's documentation is excellent, and most of them apply even when using Django-Nonrel in an application.
source share