Advertisement
Guest User

Untitled

a guest
May 29th, 2013
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.46 KB | None | 0 0
  1. application: myapp
  2. version: 1
  3. runtime: python27
  4. api_version: 1
  5. threadsafe: false
  6.  
  7. handlers:
  8. - url: /
  9.   static_files: index.html
  10.   upload: index.html
  11.  
  12. - url: /oauth2callback
  13.   script: myapp.update
  14.  
  15. - url: /update
  16.   script: myapp.update
  17.  
  18. - url: /(.*\.(gif|png|jpg|css|js|ico))
  19.   static_files: \1
  20.   upload: (.*\.(gif|png|jpg|css|js|ico))
  21.  
  22. #- url: /(.*)
  23. #  static_files: index.html
  24. #  upload: index.html
  25.  
  26. libraries:
  27. - name: webapp2
  28.   version: latest
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement