Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using the Google App Engine Launcher to deploy my app to the GAE servers. Is there a way to save my user account and password so I don't have to type it in every time I redeploy?

I'm still in the learning stages of using GAE so typing my 16 odd character password gets tiresome when I redeploy 15+ times per evening.

-Kort

share|improve this question
Maybe you have a reason to deploy but there is a local server with the SDK. – ide Mar 1 '11 at 2:46
2  
You could get a Mac. The Mac App Engine Launcher does save username and email. – Calvin Mar 1 '11 at 2:50
I redeploy to work with my live data. I'm the only one who uses the app so I'm not really risking a lot by working on the live version. =) – Kort Pleco Mar 1 '11 at 2:54
OT FYI: You can download your live data to your development server with the python bulkloader tool. It works even with Java. – Riley Lark Mar 1 '11 at 2:58

6 Answers

up vote 13 down vote accepted

You can make a .bat file that has the following text:

echo <password> | c:\python25\python.exe "C:\Program Files\Google\google_appengine\appcfg.py" --email=username --passin update <directory of app on your pc>

(According to GAE docs you cannot specify the password as a command line option)

share|improve this answer
Note, GAE is python 2.5 =) – Kort Pleco Apr 26 '11 at 18:38
Oops. BTW I'm using 2.6 and everything is okay so far. – Uri Apr 29 '11 at 8:45
Give me more detail about this code, please – ZuzooVn Oct 23 '11 at 2:49
@ZuzooVn please be more specific, what details do you need? – Uri Oct 27 '11 at 12:31
You are my hero! the "echo <password> | " part is genius! :D – Mark Apr 24 '12 at 14:04
show 2 more comments

Use oauth to save an OAuth2 token so you don't need to keep re-typing your password.

share|improve this answer

The accepted solution didn't work for me. Using pipes did

echo <password> | c:\python25\python.exe "C:\Program Files\Google\google_appengine\appcfg.py" --email=username --passin update <directory of app on your pc>
share|improve this answer
fixed, thanks. – Uri May 11 '11 at 20:12

appcfg already does this for you. Per the docs:

appcfg.py gets the application ID from the app.yaml file, and prompts you for the email address and password of your Google account. After successfully signing in with your account, appcfg.py stores a "cookie" so that it does not need to prompt for a password on subsequent attempts.

If this isn't occurring for you, you might want to try deleting any .appcfg* config files.

share|improve this answer
1  
The cookie gets wiped after a reboot or a few hours of inactivity. – sakkaku Mar 1 '11 at 7:16

You could write a command line script that executes appcfg.py to do this.

You can specify the email to use with the --email= command line parameter.

You can pass in the password from stdin by using the --passin parameter.

share|improve this answer

Other tips & trick: using command line as below:

To get appcfg.py to accept --password on the command line instead of being prompted for it:

Change: *appengine/google_appengine/google/appengine/tools/appcfg.py*

add the following in the parser.add_option section:

parser.add_option("-p","--password", action="store", dest="password",
                  metavar="PASSWORD", default=None,
                  help="The password")

Then modify the GetUserCredentials function:

def GetUserCredentials():
  """Prompts the user for a username and password."""
  email = self.options.email
  if email is None:
    email = self.raw_input_fn("Email: ")

  password = self.options.password
  if password is None:
    password = self.raw_input_fn("Password: ")

#      password_prompt = "Password for %s: " % email
#      if self.options.passin:
#        password = self.raw_input_fn(password_prompt)
#      else:
#        password = self.password_input_fn(password_prompt)

  return (email, password)

That's it, now you can call:

appcfg.py update demos/guestbook --email=email@gmail.com --password=xxxx

Ref: http://samalolo.blogspot.com/2009/04/appcfgpy-tweak-to-allow-passing.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.