-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
55 lines (49 loc) · 1017 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
application: strava-raceways
version: 1
runtime: python27
api_version: 1
threadsafe: yes
skip_files:
- ^(.*/)?#.*#$
- ^(.*/)?.*~$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?.*/RCS/.*$
- ^(.*/)?\..*$
- ^(.*/)(README|CONTRIBUTING|Readme).md$
- ^(.*/)Makefile.md$
- ^(.*/)(README|LICENSE|CONTRIBUTING|AUTHORS|PATENTS|COPYING)$
- ^node_modules/.*$
handlers:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
# yeoman stuff
- url: /styles
static_dir: app/styles
- url: /images
static_dir: app/images
- url: /components
static_dir: app/components
- url: /scripts
static_dir: app/scripts
- url: /bower_components
static_dir: app/bower_components
- url: /elements
static_dir: app/elements
- url: /index
static_files: app/index.html
upload: app/index\.html
- url: /404
static_files: app/404.html
upload: app/404\.html
- url: .*
script: main.app
libraries:
- name: webapp2
version: "2.5.2"
- name: jinja2
version: "2.6"
- name: ssl
version: latest
- name: pycrypto
version: latest