forked from the-blue-alliance/the-blue-alliance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
65 lines (60 loc) · 1.23 KB
/
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
62
63
64
65
application: tbatv-dev-hrd
version: 1-2
runtime: python27
api_version: 1
threadsafe: true
builtins:
- appstats: on
- remote_api: on
- deferred: on
libraries:
- name: django
version: "1.2"
- name: numpy
version: "1.6.1"
handlers:
- url: /css
static_dir: static/css
- url: /images
static_dir: static/images
- url: /javascript
static_dir: static/javascript
- url: /jwplayer
static_dir: static/jwplayer
- url: /ovp
static_dir: static/ovp
- url: /favicon.ico
static_files: static/favicon.ico
upload: static/favicon.ico
- url: /robots.txt
static_files: static/robots.txt
upload: static/robots.txt
- url: /apple-touch-icon.png
static_files: static/apple-touch-icon.png
upload: static/apple-touch-icon.png
- url: /apple-touch-icon-precomposed.png
static_files: static/apple-touch-icon.png
upload: static/apple-touch-icon.png
- url: /tasks/.*
script: cron_main.app
login: admin
- url: /admin/.*
script: admin_main.app
login: admin
- url: /api/.*
script: api_main.app
- url: .*
script: main.app
skip_files:
- ^(.*/)?.*\.less.*
- .git/*
- test_data/*
- tests/*
- utils/*
- run_tests.py
- pavement.py
- do_compress.py
- ^(.*/)?.*\.jar.*
- static/css/less_css/*
- static/css/precompiled_css/*
- static/javascript/tba_js/*