forked from clareliguori/grace-hopper-jeopardy
-
Notifications
You must be signed in to change notification settings - Fork 2
/
appspec.yml
32 lines (32 loc) · 820 Bytes
/
appspec.yml
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
32
version: 0.0
os: linux
files:
- source: /
destination: /home/ec2-user/grace-hopper-jeopardy
hooks:
BeforeInstall:
- location: deployment_scripts/install_dependencies
timeout: 300
runas: root
AfterInstall:
- location: deployment_scripts/build_application
timeout: 300
runas: root
- location: deployment_scripts/copy_application
timeout: 300
runas: root
ApplicationStart:
- location: deployment_scripts/start_server
timeout: 300
runas: root
- location: deployment_scripts/start_logging
timeout: 300
runas: root
ApplicationStop:
- location: deployment_scripts/stop_server
timeout: 300
runas: root
ValidateService:
- location: deployment_scripts/validate_application
timeout: 300
runas: ec2-user