diff --git a/appspec.yml b/appspec.yml index c0dc724..b65f71c 100644 --- a/appspec.yml +++ b/appspec.yml @@ -1,18 +1,16 @@ -# name: CI - -# on: [push, pull_request] - -# jobs: -# build: -# runs-on: ubuntu-latest - -# steps: -# - uses: actions/checkout@v3 -# - name: Set up Node.js -# uses: actions/setup-node@v3 -# with: -# node-version: "20" -# - run: npm install -# working-directory: ./Team3-Caecae-FE -# - run: npm test -# working-directory: ./Team3-Caecae-FE +version: 0.0 +os: linux +files: + - source: / + destination: /home/ubuntu/deploy + overwrite: yes +permissions: + - object: /home/ubuntu/deploy + owner: root + group: root + mode: 755 +hooks: + AfterInstall: + - location: deploy.sh + timeout: 1000 + runas: root