forked from webrtc/testrtc
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.yaml
More file actions
48 lines (38 loc) · 798 Bytes
/
app.yaml
File metadata and controls
48 lines (38 loc) · 798 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
application: test-rtc
version: 1
runtime: python27
threadsafe: true
api_version: 1
handlers:
- url: /manual/
static_files: src/manual/index.html
upload: src/manual/index.html
secure: always
- url: /manual/(.+)/
static_files: src/manual/\1/index.html
upload: src/manual/(.+)/index.html
- url: /manual
static_dir: src/manual
secure: always
- url: /components
static_dir: components
secure: always
- url: /js
static_dir: src/js
secure: always
- url: /ui
static_dir: src/ui
secure: always
- url: /favicon\.ico
static_files: src/images/favicon.ico
upload: src/images/favicon\.ico
- url: /css
static_dir: src/css
secure: always
- url: /
static_files: src/index.html
upload: src/index.html
secure: always
- url: /.*
script: testrtc.app
secure: always