From 6fe55b412cf3709a95834c2cd00bf57b0283b918 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=8C=ED=9C=98=EC=98=81?= <76817418+hweyoung@users.noreply.github.com> Date: Sat, 9 Dec 2023 18:58:09 +0900 Subject: [PATCH] [Feat] Create appspec.yml --- appspec.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 appspec.yml diff --git a/appspec.yml b/appspec.yml new file mode 100644 index 0000000..fc9bfed --- /dev/null +++ b/appspec.yml @@ -0,0 +1,18 @@ +# appspec.yml + +version: 0.0 +os: linux + +files: + - source: / + destination: /home/ec2-user/app/ +permissions: + - object: / + pattern: "**" + owner: ec2-user + group: ec2-user +hooks: + ApplicationStart: + - location: /home/ec2-user/app/deploy.sh + timeout: 60 + runas: root