Re: django google-app-engine appengine backend

2008-09-27 Thread Josh

Hi there,

I seem to be having the same problem you are.
Any chance you found a solution?

Cheers,
Josh


On Sep 19, 7:51 am, bfrederi <[EMAIL PROTECTED]> wrote:
> @Adam Fast
> I think you are right. I'm not at home, so I can't check for sure, but
> I'm almost positive I completely forgot to add 'appengine_django' to
> my INSTALLED_APPS. Thank you.
>
> @free won
> I started with app-engine-patch actually, because it was the first
> patch/helper I came across. But then I switched over to GAE-Help
> because it seemed like there were actual Google people supporting it.
> But I imagine app-engine-patch would be better because it seeks to
> improve upon the things GAE-Help tries to do, and adds some extra
> features. I didn't actually try to get app-engine-path running with
> the SDK because I switched to GAE-Help before messing with it much.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: django google-app-engine appengine backend

2008-09-19 Thread bfrederi

@Adam Fast
I think you are right. I'm not at home, so I can't check for sure, but
I'm almost positive I completely forgot to add 'appengine_django' to
my INSTALLED_APPS. Thank you.

@free won
I started with app-engine-patch actually, because it was the first
patch/helper I came across. But then I switched over to GAE-Help
because it seemed like there were actual Google people supporting it.
But I imagine app-engine-patch would be better because it seeks to
improve upon the things GAE-Help tries to do, and adds some extra
features. I didn't actually try to get app-engine-path running with
the SDK because I switched to GAE-Help before messing with it much.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: django google-app-engine appengine backend

2008-09-18 Thread free won
http://code.google.com/p/app-engine-patch/
I think it is much better than  GAE-Help.


-- 
真正的杰出,不是妙用规则的错层,而是极致的偏执于信念

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: django google-app-engine appengine backend

2008-09-18 Thread Adam Fast

While I'm not particularly skilled with AppEngine, it's not finding
your backend. I don't know what your INSTALLED_APPS are in settings.py
but  you'll want to make sure 'appengine_django' is in it. Also, I'm
seeing a dot in front of your google_appengine directory below. If
that was a typo ignore, but if that's there then the app isn't being
picked up for that reason.

Adam


On Thu, Sep 18, 2008 at 10:29 PM, bfrederi <[EMAIL PROTECTED]> wrote:
>
> I am trying to get django1.0 running with the google-app-engine SDK. I
> am using the "Google App Engine Helper for Django" and trying to
> follow that setup, but I can't seem to get it working. I did a
> checkout of the helper (svn checkout 
> http://google-app-engine-django.googlecode.com/svn/trunk/),
> and made it my "mysite" directory. So my directory structure looks
> like this:
>
> mysite/ #(svn checkout 
> http://google-app-engine-django.googlecode.com/svn/trunk/)
>django #(svn checkout http://googleappengine.googlecode.com/svn/trunk/)
>.google_appengine #(svn checkout 
> http://googleappengine.googlecode.com/svn/trunk/)
>appengine_django
>CHANGES
>__init__.py
>Makefile
>README
>settings.pyc
>app.yaml
>COPYING
>KNOWN_ISSUES
>manage.py
>settings.py
>urls.py
>main.py
>myapp/
>__init__.py
>views.py
>models.py
>tests.py
>
> My traceback looks like this:
>
> Traceback (most recent call last):
>  File "manage.py", line 18, in 
>InstallAppengineHelperForDjango()
>  File "/home/brandon/web_dev/mysite/appengine_django/__init__.py",
> line 451, in InstallAppengineHelperForDjango
>InstallAppengineDatabaseBackend()
>  File "/home/brandon/web_dev/mysite/appengine_django/__init__.py",
> line 175, in InstallAppengineDatabaseBackend
>PatchTestDBCreationFunctions()
>  File "/home/brandon/web_dev/mysite/appengine_django/__init__.py",
> line 188, in PatchTestDBCreationFunctions
>from django.test import utils
>  File "/home/brandon/web_dev/mysite/.google_appengine/lib/django/
> django/test/__init__.py", line 6, in 
>from django.test.testcases import TestCase
>  File "/home/brandon/web_dev/mysite/.google_appengine/lib/django/
> django/test/testcases.py", line 2, in 
>from django.db import transaction
>  File "/home/brandon/web_dev/mysite/.google_appengine/lib/django/
> django/db/__init__.py", line 22, in 
>(settings.DATABASE_ENGINE, ", ".join(map(repr,
> available_backends)))
> django.core.exceptions.ImproperlyConfigured: 'appengine' isn't an
> available database backend. Available options are: 'ado_mssql',
> 'dummy', 'mysql', 'mysql_old', 'oracle', 'postgresql',
> 'postgresql_psycopg2', 'sqlite3'
>
> I'm not sure how to add appengine as a database backend for Django, or
> how to fix this. Any suggestions?
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: django google-app-engine appengine backend

2008-09-18 Thread bfrederi

Just in case it's any help, this is the tutorial I am using:
http://code.google.com/appengine/articles/appengine_helper_for_django.html
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---