-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathapp.yaml
More file actions
43 lines (33 loc) · 659 Bytes
/
app.yaml
File metadata and controls
43 lines (33 loc) · 659 Bytes
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
application: andrewtrusty
version: 1
runtime: python
api_version: 1
# http://code.google.com/appengine/docs/python/config/appconfig.html
default_expiration: "365d"
handlers:
- url: /css
static_dir: css
- url: /js
static_dir: js
- url: /images
static_dir: images
- url: /admin/.*
script: $PYTHON_LIB/google/appengine/ext/admin
login: admin
secure: always
- url: /.*
script: main.py
skip_files:
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*
- ^(.*/)?_darcs
- ^(.*/)?DEV
- ^(.*/)?\.git
# added 4 files to skip to the defaults