-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
45 lines (36 loc) · 895 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
application: ground-control-714
version: 1
api_version: 1
runtime: python27
threadsafe: yes
handlers:
- url: /
static_files: generated/index.html
upload: generated/index.html
- url: /(.*\.html)
static_files: generated/\1
upload: generated/(.*\.html)
- url: /(apple-touch-icon-precomposed\.png|favicon\.ico|humans\.txt|robots\.txt|sitemap\.xml)
static_files: static/\1
upload: static/(apple-touch-icon-precomposed\.png|favicon\.ico|humans\.txt|robots\.txt|sitemap\.xml)
- url: /css
static_dir: static/css
- url: /fonts
static_dir: static/fonts
- url: /img
static_dir: static/img
- url: /js
static_dir: static/js
- url: /.*
static_files: static/404.html
upload: static/404.html
skip_files:
- \.git/.*
- pages/.*
- raw assets/.*
- templates/.*
- ^(.*/)?\.gitattributes$
- ^(.*/)?\.gitignore$
- ^(.*/)?\.sublime-project$
- ^(.*/)?\.sublime-workspace$
- ^(.*/)?\.bat$