mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-23 15:57:23 -04:00
Added files to support AWS Code deploy
This commit is contained in:
14
appspec.yml
Normal file
14
appspec.yml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
version: 0.0
|
||||||
|
os: linux
|
||||||
|
files:
|
||||||
|
- source: /
|
||||||
|
destination: /home/ubuntu/
|
||||||
|
hooks:
|
||||||
|
AfterInstall:
|
||||||
|
- location: scripts/install_dependencies.sh
|
||||||
|
timeout: 300
|
||||||
|
runas: root
|
||||||
|
ApplicationStart:
|
||||||
|
- location: scripts/run_app.sh
|
||||||
|
timeout: 300
|
||||||
|
runas: root
|
||||||
3
scripts/install_dependencies.sh
Normal file
3
scripts/install_dependencies.sh
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
pip install -r /home/ubuntu/notifications-admin/requirements.txt
|
||||||
Reference in New Issue
Block a user