Skip to content

Commit

Permalink
[aws] chore: Deploy to aws
Browse files Browse the repository at this point in the history
  • Loading branch information
helloitsdave committed Aug 17, 2024
1 parent 156777f commit fd05d78
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/api-contract-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
sleep 15
- name: Print application logs
run: docker-compose logs
run: docker compose logs

- name: Test connectivity
run: curl ${API_URL}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/backend-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
sleep 15
- name: Print application logs
run: docker-compose logs
run: docker compose logs

- name: Test connectivity
run: curl ${API_URL}
Expand Down
6 changes: 3 additions & 3 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"build": "tsc",
"docker:app:build": "docker build -t notes-app-be .",
"docker:app:up": "docker run -p 5001:5001 notes-app-be",
"docker:up": "docker-compose up -d",
"docker:db:up": "docker-compose up postgres -d",
"docker:down": "docker-compose down",
"docker:up": "docker compose up -d",
"docker:db:up": "docker compose up postgres -d",
"docker:down": "docker compose down",
"prisma": "prisma migrate dev --name init",
"seed": "ts-node prisma/seed.ts",
"lint": "eslint .",
Expand Down
4 changes: 2 additions & 2 deletions playwright/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"lint:ci": "eslint . --ext .ts --format @microsoft/eslint-formatter-sarif --output-file eslint-results.sarif",
"allure:docker": "docker-compose up -d allure allure-ui",
"allure:docker:logs": "docker-compose logs -f allure allure-ui"
"allure:docker": "docker compose up -d allure allure-ui",
"allure:docker:logs": "docker compose logs -f allure allure-ui"
},
"keywords": [],
"author": "",
Expand Down

0 comments on commit fd05d78

Please sign in to comment.