Docs: Adding latest config file needed by App Engine
Change-Id: Id5b106ed9d8669a65c53b83c25237940655f09bf
diff --git a/src/app.yaml b/src/app.yaml
index f8f4788..045fe2d 100644
--- a/src/app.yaml
+++ b/src/app.yaml
@@ -1,38 +1,15 @@
-application: androidsourcedocs-staging
-version: 1
+application: google.com:sourceandroid-staging
+version: 11
runtime: python
api_version: 1
-# This file defines two mutually exclusive
-# hander blocks:
-# - a handler for use on a local dev_appserver
-# during development or non-production doc build
-# - a handler for use on a production gae
-# instance. This handler requires that the
-# docs files in the app have been compressed
-# with divide_and_compress.py and that main.py
-# and gae_shell/ are present.
-#
-# Only one of the handler blocks should be
-# uncommented at any given time. By default,
-# the development handler is exposed.
-
handlers:
-
-# DEVELOPMENT HANDLER
-# (this handler block *must* be commented
-# out before pushing to a production server)
+# re-direct to index.html if no path is given
- url: /
- static_dir: /
+ static_files: index.html
+ upload: index.html
-# PRODUCTION GAE HANDLER
-#- url: /gae_shell/static
-# static_dir: gae_shell/static
-# expiration: 1d
-#
-#- url: /gae_shell/.*
-# script: /gae_shell/shell.py
-# login: admin
-#
-#- url: .*
-# script: main.py
+# access the static resources in the root directory
+- url: /(.*)
+ static_files: \1
+ upload: (.*)