Files
notifications-api/appspec.yml
2016-09-21 11:21:12 +01:00

29 lines
662 B
YAML

---
os: linux
version: 0.0
files:
- destination: /home/notify-app/notifications-api
source: /
hooks:
AfterInstall:
- location: scripts/aws_install_dependencies.sh
runas: root
timeout: 1000
- location: scripts/aws_change_ownership.sh
runas: root
timeout: 300
ApplicationStart:
- location: scripts/aws_start_app.sh
runas: root
timeout: 300
- location: scripts/register_with_elb.sh
runas: ubuntu
timeout: 300
ApplicationStop:
- location: scripts/deregister_from_elb.sh
runas: ubuntu
timeout: 300
- location: scripts/aws_stop_app.sh
runas: root
timeout: 300