Skip to content Skip to sidebar Skip to footer

Google App Engine Launcher Is Not Running My Hello World For Python Mac

I have tried all the existing resources but to no avail. here is my app.yaml code: version: 1 runtime: python27 api_version: 1 threadsafe: true handlers: - url: /.* script: hell

Solution 1:

You're missing the application: line in your app.yaml.

You're probably also gonna need to list the 3rd party webapp2 in the libraries section, something like this:

libraries:
- name: webapp2
  version: "2.5.2"

Post a Comment for "Google App Engine Launcher Is Not Running My Hello World For Python Mac"