forked from sd031/aws_codebuild_codedeploy_nodeJs_demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappspec.yml
More file actions
31 lines (26 loc) · 635 Bytes
/
appspec.yml
File metadata and controls
31 lines (26 loc) · 635 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
version: 0.0
os: linux
files:
- source: /
destination: /home/ubuntu/app
hooks:
ApplicationStop:
- location: deployment_scripts/stop_server.sh
timeout: 300
runas: root
BeforeInstall:
- location: deployment_scripts/before_install.sh
timeout: 300
runas: root
AfterInstall:
- location: deployment_scripts/after_install.sh
timeout: 300
runas: root
ApplicationStart:
- location: deployment_scripts/start_server.sh
timeout: 300
runas: root
ValidateService:
- location: deployment_scripts/validate_service.sh
timeout: 300
runas: root