aboutsummaryrefslogtreecommitdiff
path: root/appspec.yml
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2023-10-08 10:28:39 -0600
committerNavan Chauhan <navanchauhan@gmail.com>2023-10-08 10:28:39 -0600
commit613702d008db69847f783516521f77b52d5183ef (patch)
tree353628d4e7bec7cfbf56cce465642318fa485393 /appspec.yml
parent7907067adfac43fcaf7b0eb76c174669935de9be (diff)
trying to add CD
Diffstat (limited to 'appspec.yml')
-rw-r--r--appspec.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/appspec.yml b/appspec.yml
new file mode 100644
index 0000000..ba4346e
--- /dev/null
+++ b/appspec.yml
@@ -0,0 +1,17 @@
+version: 0.0
+os: linux
+files:
+ - source: /
+ destination: /home/ec2-user
+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 \ No newline at end of file