-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.yaml
55 lines (48 loc) · 816 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: you-judge-app
version: 0-0-4
api_version: 1
runtime: python27
threadsafe: true
libraries:
- name: pycrypto
version: latest
- name: ssl
version: 2.7.11
- name: lxml
version: 3.7.3
builtins:
- remote_api: on
inbound_services:
- warmup
handlers:
- url: /_ah/(mapreduce|queue|warmup|internalupload).*
script: core.wsgi.application
login: admin
secure: always
- url: /static/
static_dir: static/
secure: always
- url: /.*
script: core.wsgi.application
secure: always
skip_files:
- manage.py
- README.md
- LICENSE
- install_deps
- \.api-keys.txt
- \.travis.yml
- \.git
- \.gitignore
- \.coveragerc
- \.coverage
- \.storage
- \.DS_Store
- (.*)\.pyc
- \.isort.cfg
- requirements
- sitepackages/dev*
- run_tests
- deploy
- serve
- clean_imports