forked from mohaps/ImageSegmentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
62 lines (45 loc) · 893 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
59
60
61
application: image-segmentation
version: 1
runtime: python27
api_version: 1
default_expiration: "1h"
threadsafe: true
libraries:
- name: webapp2
version: latest
- name: jinja2
version: latest
- name: numpy
version: latest
- name: markupsafe
version: "0.15"
builtins:
- appstats: on
- remote_api: on
skip_files:
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*
- ^(.*/)?.*\.bak$
- ^(logs/.*)
- ^(reference/.*)
handlers:
- url: /favicon\.ico
static_files: appcode/static/files/favicon.ico
upload: static/files/favicon\.ico
- url: /robots\.txt
static_files: appcode/static/robotsnew.txt
upload: static/robotsnew\.txt
- url: /static
static_dir: appcode/static
application_readable: true
- url: /assets
static_dir: static
- url: .*
script: run.app