-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
56 lines (55 loc) · 1.24 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
application: attender-web
version: 1
runtime: python27
api_version: 1
threadsafe: yes
handlers:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: /api
script: api.search_endpoint.app
- url: /login
script: api.facebook_login.login
secure: always
- url: /userlogin
script: api.user_login.user
secure: always
- url: /userdetails
script: api.user_details.user
secure: always
- url: /googlelogin
script: api.google_login.googlelogin
secure: always
- url: /attend
script: api.server_attend.attend
- url: /attendees
script: api.server_attendees.attendees
secure: always
- url: /calendar
script: api.server_calendar.calendar
- url: /cron
script: engine.daily_treat_events.app
- url: /(.*\.(gif|png|jpg|ico|bmp|css|otf|eot|svg|ttf|woff))
static_files: web/\1
upload: web/images/(.*\.(gif|png|jpg|ico|bmp|css|otf|eot|svg|ttf|woff)) web/images/.*\.(gif|png|jpg)$
- url: /js
static_dir: web/js
- url: /css
static_dir: web/css
- url: /images
static_dir: web/images
mime_type: image/png
- url: /font
static_dir: web/font
- url: /
script: engine.main.app
- url: /home
script: engine.main.app
libraries:
- name: webapp2
version: "2.5.2"
- name: markupsafe
version: latest
- name: jinja2
version: latest