.platform.app.yaml 382 B

1234567891011121314151617181920212223242526
  1. name: vault
  2. type: golang:1.8
  3. hooks:
  4. build: |
  5. make setup
  6. # Remove the following line if committing your vendor directory.
  7. make deps
  8. make
  9. web:
  10. upstream:
  11. socket_family: tcp
  12. protocol: http
  13. commands:
  14. start: |
  15. ./bin/example
  16. locations:
  17. /:
  18. allow: false
  19. passthru: true
  20. disk: 256