gae-module

Appengine Modules Maven Error during DevSever Goal Run

空扰寡人 提交于 2019-12-04 16:34:45
i have been trying to run a new project with modules support, but am getting following error all the time, unable to debug it, com.google.apphosting.utils.config.EarHelper reportConfigException [INFO] INFO: Application directory 'path-to-project/DemoEar-1.0.0-SNAPSHOT/DemoWarApp' must exist and be a directory. my module structure is below main application.xml contains <module> <web> <web-uri>DemoWarApp</web-uri> <context-root>DemoWarApp</context-root> </web> </module> its clearly not pointing to the proper war folder path. does anyone know how to fix it? Thanks The bundle folder that is

Is it possible to use appengine modules and and cloud endpoints?

余生长醉 提交于 2019-12-04 05:23:01
问题 Using appengine modules implies creating dynamic web application instead of the usual appengine web application project. Cloud endpoints work well with the usual appengine Web Application projects, but these do not support appengine modules. The problem is that if I try to generate cloud endpoint client library on a Dynamic Web Application, I get an error "Not an App Engine project". Is there any way to get a Dynamic Web Application to be recognized as an App Engine project so that cloud

Cannot run Google App Engine custom managed VM: --custom-entrypoint must be set error

China☆狼群 提交于 2019-11-30 04:06:00
PROBLEM DESCRIPTION I am trying to create a custom managed VM for Google App Engine that behaves identically to the standard python27 managed VM provided by Google. (I'm doing this as a first step to adding a C++ library to the runtime). From google documentation , the following Dockerfile specifies the standard python27 runtime: FROM gcr.io/google_appengine/python-compat ADD . /app I have verified that this is the right Dockerfile by examining the one generated by gcloud preview app run when using the standard python27 runtime. It is identical to this. But when I run my application with this

Google App Engine upgrading part by part

只谈情不闲聊 提交于 2019-11-29 16:53:49
I have a complex appengine service that was written in PHP, now I want to migrate it to Python part by part. Let's say that my service has 2 parts: /signIn/.... and /data/... . I just want to migrate /signIn/ part first, then /data/ later. However, since my service is big, so I want to build new /signIn/ part in Python, then use Traffic Splitting to make some A/B Testing on this part. My problem is that Traffic Splitting can be applied on versions only, so my old and new versions have to be in same module, and same module means that they have to written in same language (I was wrong here, see

Google App Engine upgrading part by part

北城余情 提交于 2019-11-28 11:19:37
问题 I have a complex appengine service that was written in PHP, now I want to migrate it to Python part by part. Let's say that my service has 2 parts: /signIn/.... and /data/... . I just want to migrate /signIn/ part first, then /data/ later. However, since my service is big, so I want to build new /signIn/ part in Python, then use Traffic Splitting to make some A/B Testing on this part. My problem is that Traffic Splitting can be applied on versions only, so my old and new versions have to be

Pycharm multiple modules Run server

我的梦境 提交于 2019-11-28 10:38:41
问题 I'm trying to use multiple modules in google app engine. i try using this source code: https://github.com/GoogleCloudPlatform/appengine-modules-helloworld-python but i cant seem to find a way to run from pycharm with all the .yaml loaded, so only the app.yaml seem to load. also when trying to upload the code to the appengine (using pycharm) i cant seem to upload all. is there a way to solve it? i saw similar question : Run App Engine development server with modules in PyCharm but no answer i