-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
49 lines (40 loc) · 896 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
application: sapling-aego
version: 1
runtime: go
api_version: go1
handlers:
- url: /(robots\.txt|favicon\.ico|apple-touch-icon.*)
static_files: client/_public/img/root/\1
upload: client_public/img/root/.*
- url: /partials
static_dir: client/_public/partials
- url: /img
static_dir: client/_public/img
- url: /font
static_dir: client/_public/font
- url: /css
static_dir: client/_public/css
- url: /js
static_dir: client/_public/js
- url: /
static_files: client/_public/index.html
upload: client/_public/index.html
- url: /.*
script: _go_app
skip_files:
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*
- ^(.*/)?.*\.bak$
- ^(.*/)?.*\.coffee
- ^(.*/)?.*\.jade
- client/node_modules
- client/test
- client/vendor
- client/scripts