-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
58 lines (47 loc) · 908 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
52
53
54
55
56
57
58
application: dirometer
version: 1
runtime: python
api_version: 1
builtins:
- remote_api: on
inbound_services:
- warmup
handlers:
- url: /_ah/queue/deferred
script: djangoappengine/deferred/handler.py
login: admin
- url: /_ah/stats/.*
script: djangoappengine/appstats/ui.py
- url: /media/admin
static_dir: django/contrib/admin/media
expiration: '0'
- url: /img
static_dir: frontend/static/img
- url: /css
static_dir: frontend/static/css
- url: /js
static_dir: frontend/static/js
- url: /.*
script: djangoappengine/main/main.py
skip_files:
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*
- ^(.*/)?.*\.bak$
- ^(.*/)?.*\.psd$
- ^(.*/)?.*\.json$
- ^(.*/)?.*\.datastore$
- ^(.*/)?.*\.bat$
- ^(.*/)?.*\.c$
- ^(.*/)?.*\.po$
- ^data/
- ^logs/
- ^build/
- ^tools/
- ^mobile_app/