From 9d0aabd880de1f17b0d1bbf223c30d3b44b53bb2 Mon Sep 17 00:00:00 2001 From: Chigozirim Igweamaka Date: Fri, 17 May 2024 11:59:45 +0100 Subject: [PATCH] Create appspec.yml --- appspec.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 appspec.yml diff --git a/appspec.yml b/appspec.yml new file mode 100644 index 0000000..9312b60 --- /dev/null +++ b/appspec.yml @@ -0,0 +1,12 @@ +version: 0.0 +os: linux +files: + - source: / + destination: /home/ubuntu/song-recognition +hooks: + BeforeInstall: + - location: scripts/BeforeInstall.sh + AfterInstall: + - location: scripts/AfterInstall.sh + ApplicationStart: + - location: scripts/ApplicationStart.sh