Reputation: 4722
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
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
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