Advertisement
Guest User

app.yaml

a guest
Jan 5th, 2016
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.74 KB | None | 0 0
  1. application: app-id
  2. version: 1
  3. runtime: python27
  4. api_version: 1
  5. threadsafe: yes
  6.  
  7. handlers:      # static then dynamic
  8.  
  9. - url: /favicon\.ico
  10.   static_files: favicon.ico
  11.   upload: favicon\.ico
  12.  
  13. - url: /js
  14.   static_dir: static/js
  15.  
  16. - url: /img
  17.   static_dir: static/img
  18.  
  19. - url: /css
  20.   static_dir: static/bootstrap/css
  21.  
  22. - url: /fonts
  23.   static_dir: static/fonts
  24.  
  25. - url: /partials
  26.   static_dir: static/partials
  27.  
  28. - url: /
  29.   static_files: templates/index.html
  30.   upload: templates/index\.html
  31.   secure: optional
  32.  
  33. - url: /_ah/spi/.*
  34.   script: conference.api
  35.   secure: optional
  36.  
  37. libraries:
  38. - name: endpoints
  39.   version: latest
  40.  
  41. # pycrypto library used for OAuth2 (req'd for authenticated APIs)
  42. - name: pycrypto
  43.   version: latest
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement