20 lines
367 B
YAML
20 lines
367 B
YAML
version: 0.0
|
|
os: linux
|
|
files:
|
|
- source: /
|
|
destination: /home/ec2-user/app
|
|
|
|
hooks:
|
|
BeforeInstall:
|
|
- location: scripts/setup_tunnel.sh
|
|
timeout: 600
|
|
runas: root
|
|
AfterInstall:
|
|
- location: scripts/deploy.sh
|
|
timeout: 600
|
|
runas: ec2-user
|
|
ValidateService:
|
|
- location: scripts/verify.sh
|
|
timeout: 120
|
|
runas: ec2-user
|