github.com/shashidharatd/test-infra@v0.0.0-20171006011030-71304e1ca560/gubernator/app.yaml (about)

     1  runtime: python27
     2  api_version: 1
     3  threadsafe: yes
     4  instance_class: F2
     5  
     6  inbound_services:
     7  - warmup
     8  
     9  handlers:
    10  - url: /_ah/warmup
    11    script: main.app
    12    login: admin
    13  
    14  - url: /favicon\.ico
    15    static_files: static/favicon.ico
    16    upload: static/favicon\.ico
    17    secure: always
    18  
    19  - url: /robots\.txt
    20    static_files: static/robots.txt
    21    upload: static/robots.txt
    22    secure: always
    23  
    24  - url: /static
    25    static_dir: static
    26    application_readable: true
    27  
    28  - url: .*
    29    script: main.app
    30    secure: always
    31  
    32  libraries:
    33  - name: webapp2
    34    version: "2.5.2"
    35  - name: jinja2
    36    version: "2.6"