blob: cc36a26479b747053b2dc09b8221ecf506421a90 (
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
|
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
skip_files:
- src/.*
|