forked from parallel-p/thehat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
54 lines (42 loc) · 910 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
runtime: python27
api_version: 1
threadsafe: yes
handlers:
- url: /admin_panel/.*
script: google.appengine.ext.admin.application
login: admin
- url: /landing
static_files: templates/landing.html
upload: templates/landing.html
- url: /android/beta
static_files: templates/android_beta.html
upload: templates/android_beta.html
- url: /android/new/beta
static_files: templates/android_new_beta.html
upload: templates/android_new_beta.html
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: /assets
static_dir: assets
- url: /tos
static_dir: assets
- url: /internal/.*
script: main.app
login: admin
- url: .*
script: main.app
builtins:
- remote_api: on
- deferred: on
libraries:
- name: webapp2
version: "2.5.2"
- name: django
version: "1.4"
- name: jinja2
version: latest
- name: numpy
version: latest
- name: matplotlib
version: latest