-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
59 lines (43 loc) · 975 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
58
59
application: si-age-league
version: 1
runtime: python27
api_version: 1
threadsafe: yes
handlers:
- url: /static
static_dir: static
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: /api/players/.*
script: api.players.app
- url: /api/users/.*
script: api.users.app
- url: /api/games/.*
script: api.games.app
- url: /api/civs/.*
script: api.civs.app
- url: /api/gamesettings/.*
script: api.gamesettings.app
- url: /api/globalstats/.*
script: api.globalstats.app
- url: /api/rules/.*
script: api.rules.app
- url: /api/actions/admin/.*
script: api.actions_admin.app
- url: /api/actions/files/.*
script: api.actions_files.app
- url: /api/actions/.*
script: api.actions.app
- url: /.*
script: main.app
- url: /_ah/queue/deferred
script: google.appengine.ext.deferred.deferred.application
login: admin
builtins:
- deferred: on
libraries:
- name: webapp2
version: "2.5.2"
- name: jinja2
version: latest