mihai
mihai

Reputation: 4722

Cannot deploy with goapp - invalid username or password

Getting an invalid username or password error after trying to sign in with

goapp deploy myapp/

following the Google App Engine Go tutorial.

Upvotes: 2

Views: 1178

Answers (2)

samwize
samwize

Reputation: 27353

goapp seems to be lacking in documentation. Anyway it uses appcfg.py, so you can directly update app with:

appcfg.py update . --noauth_local_webserver

Upvotes: 0

Patrice
Patrice

Reputation: 4692

Just for the sake of having the answer as an actual answer:

use the following

goapp deploy -oauth -application

and it will work. Credit to @ntsh for this :)

Upvotes: 2

Related Questions