Home | History | Annotate | Download | only in frontend
      1 application: audio-tuning
      2 version: 1
      3 runtime: python27
      4 api_version: 1
      5 threadsafe: true
      6 
      7 handlers:
      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