Hi, I have deployed an app in GAE and works fine with these db settings in settings.py:
# db settings APP_FOLDER = os.path.dirname(__file__) APP_NAME = os.path.split(APP_FOLDER)[-1] # DB_FOLDER: Sets the place where migration files will be created # and is the store location for SQLite databases DB_FOLDER = os.path.join(APP_FOLDER, "databases") DB_URI = "sqlite://storage.db" DB_POOL_SIZE = 1 But it's not connected to google:datastore. If I just change: # db settings APP_FOLDER = os.path.dirname(__file__) APP_NAME = os.path.split(APP_FOLDER)[-1] # DB_FOLDER: Sets the place where migration files will be created # and is the store location for SQLite databases DB_FOLDER = os.path.join(APP_FOLDER, "databases") DB_URI = "google:datastore" DB_POOL_SIZE = 1 It returns a not found error. How can I configure py4web db connection to datastore? Thanks -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to web2py+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/web2py/51f81107-8c9f-4ce2-8e74-8e5f136e20ea%40googlegroups.com.