-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.yaml
52 lines (45 loc) · 797 Bytes
/
app.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
application: put your own google app id here
version: 1
runtime: python27
api_version: 1
threadsafe: true
libraries:
- name: PIL
version: latest
- name: markupsafe
version: latest
- name: setuptools
version: latest
- name: jinja2
version: latest
builtins:
- remote_api: on
- datastore_admin: on
- appstats: on
- deferred: on
inbound_services:
- mail
- channel_presence
- warmup
admin_console:
pages:
- name: Edit Domains
url: /account/admin/editdomains
- name: Edit Pages
url: /account/admin/editpages
handlers:
- url: /.*
script: main.application
skip_files:
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*
- ^(.*/)?.*\.bak$
- ^README.md$
- ^onlinesrc/.*