Questions tagged [dev-appserver]

83 questions
9
votes
2 answers

What is the relationship between Google's App Engine SDK and Cloud SDK?

I'm developing a Google App Engine application and I am encountering references to both an App Engine SDK and a Cloud SDK. How do these two SDKs relate to each other? There is definitely some overlap between the two. There is a dev_appserver.py…
user2771609
  • 1,867
  • 1
  • 15
  • 36
8
votes
1 answer

Google Cloud Storage Client not working on dev appserver

I 'm building an AppEngine application that stores data in Google Cloud Storage. I use the Google Cloud Storage Client (GCS) library as suggested. My app is working when deployed on AppEngine (reading/writing/listing objects) but I cannot make it…
7
votes
1 answer

--address=0.0.0.0 argument not working after upgrading to App Engine 1.7.6

I just upgraded to the latest version of App Engine which is usually a good thing and just works. Now when I try to launch dev_appserver (the new multithreaded version) I get: dev_appserver.py: error: unrecognized arguments: --address=0.0.0.0 I've…
philipfc
  • 609
  • 9
  • 20
6
votes
2 answers

Why can not i run a google app engine project on localhost?

I am using macbook pro for development. I just installed eclipse indigo. Google app engine Java SDK is 1.8.2. I am trying to run an appengine project on localhost. But i am getting the following error: 2013-08-04 13:14:03.193 java[2146:707] [Java…
Piscean
  • 3,069
  • 12
  • 47
  • 96
5
votes
3 answers

Prevent OSX firewall from popping up when developing AppEngine Go Application

I'm currently locally developing an AppEngine app using the Go programming language. My operating system is Mac OS X 10.8.3. I keep AppEngine's development server (dev_appserver.py) running as I develop. Every time I save one of my application files…
Timothy Armstrong
  • 1,982
  • 2
  • 16
  • 19
4
votes
4 answers

ImportError when running dev_appserver.py from pycharm

I'm using the latest version of pycharm 2018.2, on Windows. I've also updated the Google Cloud Sdk to the latest versions too. When I use the built in App Engine run configuration in Pycharm: I get an import error ImportError: cannot import name…
Rob Curtis
  • 2,245
  • 24
  • 33
4
votes
1 answer

Why is the entity I create in setUp() not accessible via nosetests?

I still can't seem to get Nosetest to run properly. The dev_appserver runs fine when started from the command line, but when I attempt to start it from the functional_tests.py it fails. I create a Client entity in the setUp(), but it's not…
BryanWheelock
  • 12,146
  • 18
  • 64
  • 109
4
votes
2 answers

Google AppEngine dev app server won't run on localhost

I'm using Eclipse Java EE and when I compile and run my Google AppEngine project on localhost:8080 the browser doesn't give any correct output, but when I'm using 127.0.0.1:8080 my program runs on the browser just fine. But when I deploy my app to…
4
votes
1 answer

GAE: python code to check if i'm on dev_appserver or deployed to appspot

My GAE app uses OAUTH 2. Currently, I manually switch the redirect_uri between http://localhost:8081/oauth2callback and myapp.appspot.com/oauth2callback depending on whether do local testing with dev_appserver or if I deploy to appspot.com. Is…
pfalke
  • 336
  • 1
  • 9
3
votes
2 answers

How to lease tasks from a pull-queue when running in dev_appserver?

Is there a way to lease tasks from a pull-queue when running the application locally using dev_appserver? More Info: I have a GAE app that uses pull queues. I need to lease tasks from that queue from a different service written in java. I am…
feroze
  • 7,380
  • 7
  • 40
  • 57
3
votes
1 answer

Pycharm breakpoints on Thread for Google App Engine

PyCharm Professional debugger has one issue when working with Google App Engine. Breakpoints do not work when debugging Threads launched manually by my code. This affects ability to debug code running on dev_appserver which uses threading.Thread or…
3
votes
2 answers

Running Java and Python standard together locally

My project has been using Python on App Engine standard for a while, and we've been able to locally run the services using dev_appserver.py. Recently, we've started developing services on Java 8 as well. The new service is being built with the…
3
votes
0 answers

Local appserver using remote datastore

I successfully followed the Google Cloud Endpoints tutorial and created a project with an AppEngine using Endpoints and connected to it from an Android App. (As detailed here:…
3
votes
0 answers

getting Type error while running dev_appserver.py

I wanted to deploy my repository to google cloud platform thus had successfully cloned the same using cloud shell but while running dev_appserver.py it gave a type error, below is the error: Welcome to Cloud Shell! Type "help" to get…
3
votes
0 answers

appengine sdk ImportError: No module named pwd

When I use dev_appserver.py, it says ImportError: No module named pwd My appengine sdk version is 1.9.17 Any idea?
whynot
  • 85
  • 1
  • 9
1
2 3 4 5 6