-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
57 lines (41 loc) · 939 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
56
57
application: amiable-hour-95808
version: 1
runtime: python27
api_version: 1
threadsafe: yes
handlers: # static then dynamic
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: /js
static_dir: static/js
- url: /img
static_dir: static/img
- url: /css
static_dir: static/bootstrap/css
- url: /fonts
static_dir: static/fonts
- url: /partials
static_dir: static/partials
- url: /
static_files: templates/index.html
upload: templates/index\.html
secure: always
- url: /crons/set_announcement
script: main.app
- url: /_ah/spi/.*
script: conference.api
secure: always
- url: /tasks/send_confirmation_email
script: main.app
login: admin
- url: /tasks/set_featured_speaker
script: main.app
libraries:
- name: webapp2
version: latest
- name: endpoints
version: latest
# pycrypto library used for OAuth2 (req'd for authenticated APIs)
- name: pycrypto
version: latest