aboutsummaryrefslogtreecommitdiff
path: root/appspec.yml
blob: a239cebf87980dd5a2f95e8b721f08c5e7ebef41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
version: 0.0
os: linux
files:
  - source: /
    destination: /home/ec2-user/dep-dir
hooks:
  BeforeInstall:
    - location: scripts/install_dependencies.sh
      timeout: 300
      runas: root
    - location: scripts/start_server
      timeout: 300
      runas: root
  ApplicationStop:
    - location: scripts/stop_server
      timeout: 300
      runas: root