• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1application: audio-tuning
2version: 1
3runtime: python27
4api_version: 1
5threadsafe: true
6
7handlers:
8- url: /(.*\.css)
9  mime_type: text/css
10  static_files: \1
11  upload: (.*\.css)
12
13- url: /(.*\.html)
14  mime_type: text/html
15  static_files: \1
16  upload: (.*\.html)
17
18- url: /(.*\.js)
19  mime_type: text/javascript
20  static_files: \1
21  upload: (.*\.js)
22
23- url: /(LICENSE)
24  mime_type: text/plain
25  static_files: \1
26  upload: (LICENSE)
27
28- url: /
29  static_files: audio.html
30  upload: audio.html
31