diff options
Diffstat (limited to 'remoting/client/appengine/app.yaml')
-rw-r--r-- | remoting/client/appengine/app.yaml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/remoting/client/appengine/app.yaml b/remoting/client/appengine/app.yaml new file mode 100644 index 0000000..ff9db53 --- /dev/null +++ b/remoting/client/appengine/app.yaml @@ -0,0 +1,22 @@ +application: google.com:chromoting +version: 1 +runtime: python +api_version: 1 + +handlers: +- url: /static_files + static_dir: static_files + secure: always + +- url: /api/.* + script: api.py + secure: always + +- url: /auth/.* + script: auth.py + secure: always + +- url: .* + script: main.py + secure: always + |