From 83721f40266d9e0d5f2c0182338905d18ca250d6 Mon Sep 17 00:00:00 2001 From: stephenwebdev777-png Date: Mon, 10 Nov 2025 17:38:11 +0530 Subject: [PATCH] Add appspec.yml for deployment configuration --- appspec.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 appspec.yml diff --git a/appspec.yml b/appspec.yml new file mode 100644 index 0000000..c5186a2 --- /dev/null +++ b/appspec.yml @@ -0,0 +1,16 @@ +version: 0.0 +os: linux +files: + - source: / + destination: /home/ubuntu/app + +hooks: + AfterInstall: + - location: scripts/install_dependencies.sh + timeout: 300 + runas: ubuntu + + ApplicationStart: + - location: scripts/start_server.sh + timeout: 300 + runas: ubuntu