diff options
Diffstat (limited to 'WebKitTools/TestResultServer/app.yaml')
-rw-r--r-- | WebKitTools/TestResultServer/app.yaml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/WebKitTools/TestResultServer/app.yaml b/WebKitTools/TestResultServer/app.yaml new file mode 100644 index 0000000..e51af84 --- /dev/null +++ b/WebKitTools/TestResultServer/app.yaml @@ -0,0 +1,19 @@ +application: test-results +version: 1 +runtime: python +api_version: 1 + +handlers: +- url: /stylesheets + static_dir: stylesheets + +- url: /testfile/delete + script: main.py + login: admin + +- url: /dashboards/delete + script: main.py + login: admin + +- url: /.* + script: main.py |