-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.yaml
57 lines (53 loc) · 1.04 KB
/
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
52
53
54
55
56
57
application: wbor-hr
version: 1-8-modelsmodule-debug
runtime: python27
api_version: 1
threadsafe: true
default_expiration: "7d"
builtins:
- remote_api: on
handlers:
- url: /
script: main.app
- url: /index\.html
script: main.app
- url: /static
static_dir: static
- url: /fun/?
static_files: static/screenclean.swf
upload: static/screenclean.swf
- url: /favicon\.png
static_files: static/images/favicon.png
upload: static/images/favicon\.png
- url: /favicon\.ico
static_files: static/images/favicon.png
upload: static/images/favicon\.png
- url: /runtests
script: test_cases.app
- url: /dj.*
script: dj.app
- url: /api.*
script: api.app
- url: /blog/.*/edit/?
script: dj.app
- url: /.*
script: main.app
libraries:
- name: django
version: latest
skip_files:
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*
- ^(.*/)?.*\.bak$
- ^(.*/)?static/less/.*
- ^(.*/)?static/docs/.*
- ^(.*/)?README\.md
- ^(.*/)?Makefile
- ^(.*/)?LICENSE