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

Unified Diff: appengine/findit_mock/app.yaml

Issue 2447253002: [Findit & Predator] Code reorg of Findit. (Closed)
Patch Set: Clean up. Created 4 years, 1 month 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: appengine/findit_mock/app.yaml
diff --git a/appengine/findit/crash-backend-cracas.yaml b/appengine/findit_mock/app.yaml
similarity index 55%
copy from appengine/findit/crash-backend-cracas.yaml
copy to appengine/findit_mock/app.yaml
index 45a5f9659c6b96f0d49b6f8478322836bb23257a..21b7c4fe5f8cf373773d4e90c0acc97282e4c07c 100644
--- a/appengine/findit/crash-backend-cracas.yaml
+++ b/appengine/findit_mock/app.yaml
@@ -1,18 +1,19 @@
-application: findit-for-me-dev
-module: crash-backend-cracas
+application: findit-for-me-staging
+module: default
version: 1
runtime: python27
api_version: 1
threadsafe: true
-instance_class: B8
-basic_scaling:
- max_instances: 20
- idle_timeout: 20m
+instance_class: F1
+automatic_scaling:
+ min_idle_instances: 1
+ max_concurrent_requests: 40
handlers:
-# Pipeline handler.
-- url: /_ah/pipeline(/.*)?
- script: "common.pipeline_wrapper.pipeline_handlers._APP"
+# Static resources and home page.
+# Web UI pages.
+- url: /version
+ script: default_main.frontend_app
secure: always
skip_files:
@@ -23,9 +24,7 @@ skip_files:
- ^(.*/)?tests\.py$
- ^(.*/)?\..*$
- ^(.*/)?.*\.md$
-- ^(.*/)?README$
-- ^(.*/)?Makefile$
-- ^(.*/)?util_scripts/.*$
+- ^(.*/)?scripts/.*$
libraries:
- name: webapp2

Powered by Google App Engine
This is Rietveld 408576698