-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.yaml
43 lines (34 loc) · 812 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
application: dotty-dots
version: 4
runtime: python
api_version: 1
builtins:
- datastore_admin: on
handlers:
# Contains CSS/JS and alphabet.js
- url: /static
static_dir: static
# Dynamically generated alphabet.js file from
# latest db data.
- url: /secret-character-editor/alphabet.js
script: edit.py
login: admin
- url: /secret-character-editor/static
static_dir: secret-character-editor/static
login: admin
- url: /secret-character-editor/.*
script: edit.py
login: admin
# For testing e.g.
# /testarea/shapes.html
# /testarea/fades.html
- url: /testarea
static_dir: testarea
login: admin
# For import/export.
- url: /remote_api
script: $PYTHON_LIB/google/appengine/ext/remote_api/handler.py
login: admin
- url: /.*
static_files: index.html
upload: index.html