-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mike Dirolf
committed
Apr 10, 2009
1 parent
588b230
commit 8b26998
Showing
3 changed files
with
56 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
Index: python/dev_appserver.py | ||
=================================================================== | ||
--- python/dev_appserver.py (revision 46) | ||
+++ python/dev_appserver.py (working copy) | ||
@@ -37,6 +37,7 @@ | ||
SCRIPT_DIR = os.path.join(DIR_PATH, 'google', 'appengine', 'tools') | ||
|
||
EXTRA_PATHS = [ | ||
+ "PATH/TO/MONGO-APPENGINE-CONNECTOR/DIRECTORY", | ||
DIR_PATH, | ||
os.path.join(DIR_PATH, 'lib', 'antlr3'), | ||
os.path.join(DIR_PATH, 'lib', 'django'), | ||
Index: python/google/appengine/tools/dev_appserver.py | ||
=================================================================== | ||
--- python/google/appengine/tools/dev_appserver.py (revision 46) | ||
+++ python/google/appengine/tools/dev_appserver.py (working copy) | ||
@@ -76,7 +76,7 @@ | ||
from google.appengine.api import appinfo | ||
from google.appengine.api import croninfo | ||
from google.appengine.api import datastore_admin | ||
-from google.appengine.api import datastore_file_stub | ||
+import datastore_mongo_stub | ||
from google.appengine.api import mail_stub | ||
from google.appengine.api import urlfetch_stub | ||
from google.appengine.api import user_service_stub | ||
@@ -3040,7 +3040,7 @@ | ||
|
||
apiproxy_stub_map.apiproxy = apiproxy_stub_map.APIProxyStubMap() | ||
|
||
- datastore = datastore_file_stub.DatastoreFileStub( | ||
+ datastore = datastore_mongo_stub.DatastoreMongoStub( | ||
app_id, datastore_path, history_path, require_indexes=require_indexes) | ||
apiproxy_stub_map.apiproxy.RegisterStub('datastore_v3', datastore) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters