Error uploading application Python Google App Engine -


i have been trying upload python google app engine folder using windows command prompt. have app.yaml python file in folder. when pass following command in command prompt:

appcfg.py --oauth2 update c:/path/to/the/folder 

i error.

appcfg.py: error: directory not contain project.yaml configuration file. 

where wrong , how should proceed?

this app.yaml file:

application: myappid version: 1 runtime: python27 api_version: 1 threadsafe: true  handlers: - url: /.*   script: sampleapp.app  libraries: - name: lxml   version: "latest" 

check shell syntax. had error message also, not referencing right project folder. note ending slash:

appcfg.py --oauth2 update c:/path/to/the/folder/


Comments

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -