blob: d6d8d3e76f9dbc38346bbde05cb23c90250c5234 (
plain)
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
|
application: gonativeclient
version: 2
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /demo
static_files: static/index.html
upload: static/index\.html
secure: always
- url: /demo/.*
static_files: static/index.html
upload: static/index\.html
secure: always
- url: /static/home/(.*)
static_files: static/home/\1
upload: static/home/.*
secure: always
- url: /static
static_dir: static
secure: always
- url: /.*
script: gonacl.application
secure: always
skip_files:
- src/.*
|