Advertisement
mspotilas

GAE app.yaml for avafavico, with python27 and lxml

Mar 12th, 2012
1,532
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.42 KB | None | 0 0
  1. application: avafavico
  2. version: 5
  3. runtime: python27
  4. api_version: 1
  5. threadsafe: false
  6.  
  7. default_expiration: "8h"
  8.  
  9. inbound_services:
  10. - warmup
  11.  
  12. handlers:
  13. - url: /favicon.ico
  14.   static_files: static/images/favicon.ico
  15.   upload: static/images/favicon.ico
  16. - url: /robots.txt
  17.   static_files: static/robots.txt
  18.   upload: static/robots.txt
  19. - url: .*
  20.   script: blogava.py
  21.  
  22. libraries:
  23. - name: lxml
  24.   version: latest
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement