Learning objectives
- Deploy your web application to App Engine.
Now you can unleash your app on the world by deploying it to App Engine.
- Go to appengine.google.com (you will need to be logged into your Google Account).
- Create a new application and remember its application id.
-
Open
app.yaml
in your favorite editor. -
Replace
application: goplus
with the application id you chose earlier.application: YOUR_APP_ID
-
Deploy your application by running
appcfg.py
(located in the SDK directory) with theupdate
command and your application directory as the last argument./path/to/google_appengine/appcfg.py --oauth2 update goplus
-
Load
http://YOUR_APP_ID.appspot.com/gopher
you should see a fresh picture of a gopher whenever someone posts one to the Google+ public stream.
Now you or your friends can easily embed a Gopher-related picture in their webpages using this HTML snippet.
<img src="YOUR_APP_ID.appspot.com/gopher">
Optional steps: Extend the app