Files
notifications-api/appspec.yml

33 lines
763 B
YAML
Raw Normal View History

---
2016-09-20 11:49:01 +01:00
os: linux
version: 0.0
files:
2016-09-20 11:49:01 +01:00
- destination: /home/notify-app/notifications-api
source: /
hooks:
BeforeInstall:
- location: scripts/aws_clear_instance.sh
runas: root
timeout: 1000
AfterInstall:
2016-09-20 11:49:01 +01:00
- location: scripts/aws_install_dependencies.sh
runas: root
timeout: 1000
2016-09-20 11:49:01 +01:00
- location: scripts/aws_change_ownership.sh
runas: root
timeout: 300
ApplicationStart:
2016-09-20 11:49:01 +01:00
- location: scripts/aws_start_app.sh
runas: root
timeout: 300
2016-09-20 11:49:01 +01:00
- location: scripts/register_with_elb.sh
2016-05-19 11:38:22 +01:00
runas: ubuntu
timeout: 300
ApplicationStop:
2016-09-20 11:49:01 +01:00
- location: scripts/deregister_from_elb.sh
2016-05-19 11:38:22 +01:00
runas: ubuntu
timeout: 300
2016-09-20 11:49:01 +01:00
- location: scripts/aws_stop_app.sh
runas: root
timeout: 300