Re: [google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2019-09-27 Thread Alessandro Bollini
> On 27 Sep 2019, at 00:25, 'Jose Antonio Soni Solchaga' via Google App Engine > wrote: > > Hello Alessandro, > > The error message you are experiencing is because of wrong authentication. > > Here you can see a Stack Overflow question where this was answered. Agreed, but a little

[google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2019-09-26 Thread 'Jose Antonio Soni Solchaga' via Google App Engine
Hello Alessandro, The error message you are experiencing is because of wrong authentication. Here you can see a Stack Overflow question where this was answered.

[google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2019-09-26 Thread Alessandro Bollini
On Friday, 25 May 2018 20:34:53 UTC+2, Kamran (Google Cloud Support) wrote: > > Hello Yuri, > > *dev_appserver.py* is a command to start the local development server for > Python, PHP and Go. If you want to use local Datastore emulator feature for > Java, for instructions visit this article >

[google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2019-09-26 Thread Alessandro Bollini
On Friday, 25 May 2018 20:34:53 UTC+2, Kamran (Google Cloud Support) wrote: > > Hello Yuri, > > *dev_appserver.py* is a command to start the local development server for > Python, PHP and Go. If you want to use local Datastore emulator feature for > Java, for instructions visit this article >

[google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2019-09-26 Thread Alessandro Bollini
On Friday, 25 May 2018 20:34:53 UTC+2, Kamran (Google Cloud Support) wrote: > > Hello Yuri, > > *dev_appserver.py* is a command to start the local development server for > Python, PHP and Go. If you want to use local Datastore emulator feature for > Java, for instructions visit this article >

[google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2019-09-26 Thread Alessandro Bollini
On Friday, 25 May 2018 20:34:53 UTC+2, Kamran (Google Cloud Support) wrote: > > Hello Yuri, > > *dev_appserver.py* is a command to start the local development server for > Python, PHP and Go. If you want to use local Datastore emulator feature for > Java, for instructions visit this article >

[google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2019-09-26 Thread Alessandro Bollini
On Friday, 25 May 2018 20:34:53 UTC+2, Kamran (Google Cloud Support) wrote: > > Hello Yuri, > > *dev_appserver.py* is a command to start the local development server for > Python, PHP and Go. If you want to use local Datastore emulator feature for > Java, for instructions visit this article >

Re: [google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2019-05-07 Thread Cosmin Poieană
Yes, it works! Because the emulator starts, sets the required env vars, requirements are installed and finally the app is served, but with stripped env vars, then additional ones are taken from app.yaml or manually provided by the dev_appserver.py (as above). Don't forget to mention its port

Re: [google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2018-06-20 Thread 'Kai Wang' via Google App Engine
Actually, "cloud.google.com/go/datastore" should also work. However, at this moment, you *have to* pass the DATASTORE_EMULATOR_HOST with the '--env_var' flag to dev_appserver: --env_var DATASTORE_EMULATOR_HOST=localhost:8088 Please try this flag, hopefully it should work :) Dev_appserver

Re: [google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2018-06-19 Thread 'Kai Wang' via Google App Engine
Hi Giuliano, Note that, for app engine standard runtime go, the recommended datastore library is "google.golang.org/appengine/datastore". I've verified on my side this library works with dev_appserver + datastore emulator.

[google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2018-06-01 Thread Giuliano Ribeiro
When I setup the local env, see the log: WARNING 2018-06-01 13:21:25,741 api_server.py:581] Detected environment variable DATASTORE_EMULATOR_HOST=localhost:, dev_appserver will speak to the Cloud Datastore emulator running on this address. The datastore_path

[google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2018-05-30 Thread 'Kai Wang' via Google App Engine
According to the documentation , you need to have the env var "DATASTORE_EMUALTOR_HOST" set. Also, FYI, this "cloud.google.com/go/datastore" (officially, it is called Google Cloud Client Library),

[google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2018-05-30 Thread Giuliano Ribeiro
Hi Kai Wang, I'm using "cloud.google.com/go/datastore" As I read in the documentation this datastore package support the emulator, I was thinking it should be easy to use. But even enabling the emulator in the dev_appserver, my app is reading and writing directly in the cloud, ignoring the

[google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2018-05-29 Thread 'Kai Wang' via Google App Engine
Hi Glullano, What go libraries are you using? Is it google.golang.org/appengine/datastore (link ) ? Did it store locally before? You can email k...@google.com for further details :) On Friday, May 25, 2018 at 9:04:42

[google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2018-05-25 Thread 'Kamran (Google Cloud Support)' via Google App Engine
Hello Giuliano, As described in this article the Datastore Emulator is still a beta release . If you notice any defects please feel free to

[google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2018-05-25 Thread 'Kamran (Google Cloud Support)' via Google App Engine
Hello Yuri, *dev_appserver.py* is a command to start the local development server for Python, PHP and Go. If you want to use local Datastore emulator feature for Java, for instructions visit this article

[google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2018-05-25 Thread Giuliano Ribeiro
Really nice, but how to put it to work ? I'm using with Go, even setting up to true, my app still saving data in the cloud. Thank you, On Wednesday, May 16, 2018 at 9:57:42 PM UTC+1, Steren Giannini wrote: > > Dear App Engine users, > > We are pleased to announce that the App Engine local

[google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2018-05-24 Thread Yuri Sergiichuk
Hi Steren, Could you please tell me if the feature is generally available for any language and not only Python? I'm using Java and Gradle AppEngine Plugin to start the local dev server, is it possible to start the emulator at the same

[google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2018-05-19 Thread 'Kai Wang' via Google App Engine
Hi Viataly, This change alone does not affect testbed. But we do plan to allow testbed to use datastore emulator too. Please stay tuned :) On Thursday, May 17, 2018 at 1:54:22 PM UTC-7, Vitaly Bogomolov wrote: > > Hi, Steren > > Our goal is to enable it by default in the future. >> > > Good

[google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2018-05-17 Thread Vitaly Bogomolov
Hi, Steren Our goal is to enable it by default in the future. > Good news. What about google.appengine.ext.testbed.init_datastore_v3_stub() ? Is it also will be touched by these changes? WBR, Vitaly > -- You received this message because you are subscribed to the Google Groups "Google App