Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Save My User Account and Password in Google App Engine Launcher?

Tags:

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.

like image 317
Ken Avatar asked Mar 01 '11 02:03

Ken


People also ask

Which command is used to build your application into an App Engine application?

Deploy your application to App Engine using the gcloud app deploy command. This command automatically builds a container image by using the Cloud Build service and then deploys that image to the App Engine flexible environment.

How does GCP App Engine Work?

App Engine is a fully managed, serverless platform for developing and hosting web applications at scale. You can choose from several popular languages, libraries, and frameworks to develop your apps, and then let App Engine take care of provisioning servers and scaling your app instances based on demand.

How do I disable Google App Engine service?

Go into App Engine, Versions, and then click on STOP.


1 Answers

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)

like image 104
Uri Avatar answered Oct 10 '22 04:10

Uri