forked from berkerpeksag/github-badge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
47 lines (38 loc) · 786 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
application: githubbadge
version: 2
runtime: python27
api_version: 1
threadsafe: true
libraries:
- name: jinja2
version: "2.6"
skip_files:
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*
- ^(.*/)?samples/.*
handlers:
- url: /
script: main.application
- url: /badge/(.*)
script: main.application
- url: /stats
script: main.application
login: admin
- url: /css
static_dir: static/css
- url: /js
static_dir: static/js
- url: /image/(.*\.(gif|png|jpg))
static_files: static/image/\1
upload: static/image/(.*\.(gif|png|jpg))
- url: /crossdomain.xml
mime_type: text/xml
static_files: static/xml/crossdomain.xml
upload: static/xml/crossdomain.xml