Questions tagged [appcfg]
31 questions
2
votes
1 answer
When deploying to google app engine using "gcloud app deploy" command, only the source code in src/main/webapp gets deployed
I have been developing a web application (written using Java 8, CSS, JS, HTML) and testing it regularly on Google App Engine standard environment for the past couple of years with no problems, whatsoever.
The structure of my app is as…

user3483599
- 21
- 1
2
votes
3 answers
why I get error Maven source deployment is not supported for Java 8 GAE project after migration from appcfg mvn to gcloud
i run this cmd
gcloud app deploy
and get this error
[ERROR] No plugin found for prefix 'gcloud' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repositories [local…

user2320349
- 109
- 1
- 12
2
votes
1 answer
As of July 30, 2019, the standalone App Engine SDK is deprecated. How-to migrate pycharm python2.7 apps
AppCfg will become unavailable for download on July 30, 2020.
For appcfg commands you have to Migrate from AppCfg to gcloud command line.
But this link returns 404:…

voscausa
- 11,253
- 2
- 39
- 67
2
votes
1 answer
appcfg.py request_logs certificate verify failed (_ssl.c:661)
We've been using appcfg.py request_logs to download GAE logs, every once in a while it throws the error:
httplib2.SSLHandshakeError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:661)
But after a few times trying it works out,…

Khaled
- 907
- 1
- 8
- 18
2
votes
1 answer
appcfg.py command keeps on returning usage : appcfg.py [options]
My cmd keeps on returning this for what ever appcfg.py command i give even appcfg.py -v I have python 2.7.9 I installed this version,i had same issue with 2.7.11. I have everything included in my path environment variable My googleappengine is alo…

hamadkh
- 359
- 1
- 16
2
votes
3 answers
appcfg.py not working in command line
I'm just having a bit of trouble understanding why this command:
>appcfg.py -A adept-box-109804 update app.yaml
as given by the Try Google App Engine Now page does not work. I have downloaded the App Engine SDK for Python, and have Path set up to…

TowMater7
- 111
- 2
- 12
2
votes
1 answer
Parallel Module Deployment using App Engine SDK
TL;DR Is there a way to deploy App Engine modules in parallel?
I've built a go application using Google's App Engine SDK for Go. This application defines multiple modules. These modules are self-contained, and do not require any sort of dependency…

Jonathan Azoff
- 171
- 4
2
votes
1 answer
How to flush memcache from appcfg.py?
How can I flush (delete all entries of) memcache using appcfg.py?
Normally during code update, I want to flush the memcache to prevent incompability between the old and new code. Can it be done on the command line, instead of going to the developer…

Randy Sugianto 'Yuku'
- 71,383
- 57
- 178
- 228
1
vote
0 answers
Debug Java 8 Standard App Engine with Android Studio / IntelliJ?
Is it possible to debug to Google App Engine with a Java 8 runtime using Android Studio Google cloud plugin? Currently getting an error when any of the old whitelisted classes are used. I know there is gcloud and a new Gradle plugin, however that…

Patrick Jackson
- 18,766
- 22
- 81
- 141
1
vote
1 answer
Include appengine-api-1.0-sdk.jar when deploying in GAE
UPDATE
Following the advice I was given, I decided to deploy a smaller project with just a class calling this line:
_cache = MemcacheServiceFactory.getMemcacheService();
Now I'm getting this error:
java.lang.NoClassDefFoundError:…

moondaisy
- 4,303
- 6
- 41
- 70
1
vote
0 answers
Google App Engine - Issue with creating a bulkloading config
I keep getting the below error while trying to create a bulkloader_config
HTTPError: HTTP Error 404: Not Found
[ERROR ] Authentication Failed: Incorrect credentials or unsupported authentication type (e.g. OpenId).
Command I am trying to execute…

baradas
- 454
- 1
- 5
- 14
1
vote
1 answer
How do I rollback the appcfg in Google App Engine's Python SDK?
I was attempting to publish code for my website the other day and then I was greeted with this:
2016-03-14 01:18:30 Running command: "['C:\\Python27\\pythonw.exe', '-u', 'C:\\Program Files (x86)\\Google\\google_appengine\\appcfg.py',…

41bja
- 13
- 4
1
vote
1 answer
Why I can not download GAE data? 302 error is returned
I used the following command to download my GAE data:
appcfg.py download_data --log_file=bulkloader.log --kind=MyKind --url=http://myappid.appspot.com/rmt_api --filename=myfilename --db_filename=MyKind_db.sql3…

LA_
- 19,823
- 58
- 172
- 308
1
vote
1 answer
Google app engine this application does not exist error
I use java backend on google's appengine with eclipse sdk.
When I tried to update my backend with eclipse, i got error that says
com.google.appengine.tools.admin.HttpIoException: Error posting to URL:…

danheo
- 21
- 3
0
votes
1 answer
What I can use place of appcfg.py download / update for google cloud?
I was generally using the code below to update my project files.
appcfg.py -A project_name -V 1 update c:\myapp\
But now I'm getting an error. That I am not authorized by cred_policy. As a result of my research, I realized that appcfg.py is no…

Leningrad
- 3
- 2