| 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
|
|
|