-
Notifications
You must be signed in to change notification settings - Fork 8
/
app.yaml
59 lines (44 loc) · 1.02 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
application: imokdev
version: 2
runtime: python
api_version: 1
handlers:
- url: /static/css
static_dir: static/css
mime_type: text/css
- url: /static/js
static_dir: static/js
mime_type: text/javascript
- url: /static/img
static_dir: static/img
mime_type: image/png
- url: /static/pdf
static_dir: static/pdf
mime_type: application/pdf
- url: /static/blackberry/IMOk.jad
static_files: static/blackberry/IMOk.jad
mime_type: text/vnd.sun.j2me.app-descriptor
upload: static/blackberry/IMOk.jad
- url: /static/blackberry/IMOk.cod
static_files: static/blackberry/IMOk.cod
mime_type: application/vnd.rim.cod
upload: static/blackberry/IMOk.cod
- url: /bb.*
script: blackberry.py
- url: /smsgateway/android/.*
script: sms_android.py
- url: /smsgateway/twilio/.*
script: sms_twilio.py
- url: /tasks/.*
script: tasks.py
login: admin
- url: /newuser/.*
script: newuser.py
- url: /debug.*
script: debug.py
login: admin
- url: /export.*
script: export.py
login: admin
- url: .*
script: main.py