diff --git a/appspec.yaml b/appspec.yaml new file mode 100644 index 000000000..e7eb9bb5a --- /dev/null +++ b/appspec.yaml @@ -0,0 +1,21 @@ +version: 0.0 +os: linux +files: + - source: / + destination: /home/ubuntu + overwrite: yes +file_exists_behavior: OVERWRITE +permissions: + - object: /home/ubuntu + pattern: "**" + owner: ubuntu + group: ubuntu +hooks: + ApplicationStop: + - location: deploy/scripts/kill_process.sh + timeout: 100 + runas: ubuntu + ApplicationStart: + - location: deploy/scripts/run_process.sh + timeout: 3600 + runas: ubuntu