Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(130)

Unified Diff: tools/testing/perf_testing/appengine/app.yaml

Issue 8883033: Added barebones framework to get appengine to host our test data. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/testing/perf_testing/appengine/app.yaml
===================================================================
--- tools/testing/perf_testing/appengine/app.yaml (revision 0)
+++ tools/testing/perf_testing/appengine/app.yaml (revision 0)
@@ -0,0 +1,47 @@
+# Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+# for details. All rights reserved. Use of this source code is governed by a
+# BSD-style license that can be found in the LICENSE file.
+
+application: google.com:emily
Siggi Cherem (dart-lang) 2011/12/09 01:00:17 maybe you'd like a more generic name :)
+version: 1
+runtime: python
+api_version: 1
+
+handlers:
+- url: /(.*\.html)
+ mime_type: text/html
+ static_files: static/\1
+ upload: static/(.*\.html)
+
+- url: /(.*\.js)
+ mime_type: text/javascript
+ static_files: static/\1
+ upload: static/(.*\.js)
+
+- url: /(.*\.json)
+ mime_type: application/json
+ static_files: static/\1
+ upload: static/(.*\.json)
+ expiration: "1h"
+
+# image files
+- url: /(.*\.(bmp|gif|ico|jpeg|jpg|png))
+ static_files: static/\1
+ upload: static/(.*\.(bmp|gif|ico|jpeg|jpg|png))
+
+# index files
+- url: /(.+)/
+ static_files: static/\1/index.html
+ upload: static/(.+)/index.html
+ expiration: "15m"
+
+- url: /(.+)
+ static_files: static/\1/index.html
+ upload: static/(.+)/index.html
+ expiration: "15m"
+
+# site root
+- url: /
+ static_files: static/index.html
+ upload: static/index.html
+ expiration: "15m"
« no previous file with comments | « no previous file | tools/testing/perf_testing/create_graph.py » ('j') | tools/testing/perf_testing/create_graph.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698