.platform.app.yaml 428 B

123456789101112131415161718192021222324252627
  1. name: frontend
  2. type: "python:3.6"
  3. dependencies:
  4. python:
  5. flask: '*'
  6. flask-bootstrap: '*'
  7. flask-nav: '*'
  8. flask-wtf: '*'
  9. flask-debug: '*'
  10. requests: "*"
  11. redis: '*'
  12. hvac: '*'
  13. hooks:
  14. build: |
  15. sleep 1
  16. disk: 256
  17. web:
  18. commands:
  19. start: FLASK_APP=__init__.py flask run --with-threads -h 0.0.0.0 -p 8888
  20. relationships:
  21. redis: 'redis:redis'