-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.yaml
More file actions
49 lines (36 loc) · 757 Bytes
/
Copy pathapp.yaml
File metadata and controls
49 lines (36 loc) · 757 Bytes
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
application: boggleonlinegame
version: 1
runtime: python27
api_version: 1
threadsafe: yes
handlers:
- 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: /_ah/spi/.*
script: api.api
- url: /tasks/cache_average_attempts
script: main.app
- url: /tasks/send_move_email
script: main.app
- url: /crons/send_reminder
script: main.app
- url: /
static_files: templates/index.html
upload: templates/index\.html
secure: always
libraries:
- name: webapp2
version: "2.5.2"
- name: endpoints
version: latest