app.yaml 506 B

12345678910111213141516171819202122232425262728293031
  1. application: gonativeclient
  2. version: 5
  3. runtime: python27
  4. api_version: 1
  5. threadsafe: true
  6. handlers:
  7. - url: /demo
  8. static_files: static/index.html
  9. upload: static/index\.html
  10. secure: always
  11. - url: /demo/.*
  12. static_files: static/index.html
  13. upload: static/index\.html
  14. secure: always
  15. - url: /static/home/(.*)
  16. static_files: static/home/\1
  17. upload: static/home/.*
  18. secure: always
  19. - url: /static
  20. static_dir: static
  21. secure: always
  22. - url: /.*
  23. script: gonacl.application
  24. skip_files:
  25. - src/.*