https://github.com/davidfischer/stock-django-appengine
An unmodified version of Django running on Appengine
https://github.com/davidfischer/stock-django-appengine
Last synced: 3 months ago
JSON representation
An unmodified version of Django running on Appengine
- Host: GitHub
- URL: https://github.com/davidfischer/stock-django-appengine
- Owner: davidfischer
- Created: 2015-08-15T14:20:00.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-15T16:31:08.000Z (almost 10 years ago)
- Last Synced: 2025-01-03T07:03:15.051Z (5 months ago)
- Language: Python
- Size: 121 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stock Django on Appengine
This is a fairly simple Django project that illustrates how to create a Django
project that runs on Google Appengine.This project relies on a version of Django (1.4 for now) bundled with
Appengine as opposed to a forked version of Django specific to Appengine.
For more details, see the [Appengine Django notes][appengine-django].[appengine-django]: https://cloud.google.com/appengine/docs/python/tools/libraries27#django
This project does not use CloudSQL (Google's relational database) which
is necessary for using Django models and Django's ORM, models and admin
interface. Instead it uses Appengine models that store to the non-relational
datastore. This allows using Appengine models where non-relational data
is best and CloudSQL where relational data is best.