Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/colinsullivan/google-app-engine-django-nonrel-boilerplate
This is a bare django-nonrel application for the Google App Engine.
https://github.com/colinsullivan/google-app-engine-django-nonrel-boilerplate
Last synced: 5 days ago
JSON representation
This is a bare django-nonrel application for the Google App Engine.
- Host: GitHub
- URL: https://github.com/colinsullivan/google-app-engine-django-nonrel-boilerplate
- Owner: colinsullivan
- License: bsd-3-clause
- Created: 2011-02-04T18:11:00.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2011-02-05T23:43:03.000Z (almost 14 years ago)
- Last Synced: 2024-10-18T09:27:03.729Z (27 days ago)
- Language: Python
- Homepage: http://www.allbuttonspressed.com/projects/djangoappengine
- Size: 233 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Django-nonrel boilerplate application for the Google App Engine
Since you must include your dependencies in any GAE application, you can clone this repository to start your django-nonrel GAE application.
To get started:
mkdir myproject
cd myproject
git clone git://github.com/colinsullivan/google-app-engine-django-nonrel-boilerplate.git
mv google-app-engine-django-nonrel-boilerplate/ myprojectapp
cd myprojectapp/
git submodule update --init
./manage.py runserverI didn't write any of this code. Information about included packages (in lib/ directory):
* [djangoappengine installation](http://www.allbuttonspressed.com/projects/djangoappengine#installation) on allbuttonspressed.com
* django-nonrel: [https://github.com/adieu/django-nonrel](https://github.com/adieu/django-nonrel)
* djangoappengine: [https://github.com/adieu/djangoappengine](https://github.com/adieu/djangoappengine)
* djangotoolbox: [https://github.com/adieu/djangotoolbox](https://github.com/adieu/djangotoolbox)
* django-dbindexer: [https://github.com/adieu/django-dbindexer](https://github.com/adieu/django-dbindexer)
* django-testapp: [https://github.com/colinsullivan/django-testapp](https://github.com/colinsullivan/django-testapp)
* (not in lib/ directory, just files in ./)
* gaeunit: [https://github.com/colinsullivan/gaeunit](https://github.com/colinsullivan/gaeunit)Feedback is appreciated.