From e7f9d4d91153b55b68f0622e959a922ad1c7e406 Mon Sep 17 00:00:00 2001 From: Ihor S Date: Wed, 3 Sep 2025 21:32:02 +0200 Subject: [PATCH 1/2] fix --- cdk.context.json | 5 +++++ infra/cdk.context.json | 5 ++++- infra/lib/infra-stack.ts | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 cdk.context.json diff --git a/cdk.context.json b/cdk.context.json new file mode 100644 index 0000000..e26be24 --- /dev/null +++ b/cdk.context.json @@ -0,0 +1,5 @@ +{ + "acknowledged-issue-numbers": [ + 34892 + ] +} diff --git a/infra/cdk.context.json b/infra/cdk.context.json index 4f37df3..382d08e 100644 --- a/infra/cdk.context.json +++ b/infra/cdk.context.json @@ -11,5 +11,8 @@ "hosted-zone:account=652460108554:domainName=for-test.click:region=us-east-1": { "Id": "/hostedzone/Z02922463EWWL2UZ4E04J", "Name": "for-test.click." - } + }, + "acknowledged-issue-numbers": [ + 34892 + ] } diff --git a/infra/lib/infra-stack.ts b/infra/lib/infra-stack.ts index a07284b..a740956 100644 --- a/infra/lib/infra-stack.ts +++ b/infra/lib/infra-stack.ts @@ -282,7 +282,7 @@ export class InfraStack extends cdk.Stack { `echo "BCRYPT_SALT_ROUNDS=8" >> .env`, // Start Docker Compose - 'sudo -u ec2-user /usr/local/bin/docker-compose up -d', + 'sudo -u ec2-user /usr/local/bin/docker-compose up api postgres redis -d', // Wait for services to start, then run migrations 'sleep 30', From 507bc8b704955a84e55c36e69a59ad2b739c5386 Mon Sep 17 00:00:00 2001 From: Ihor S Date: Wed, 3 Sep 2025 21:32:32 +0200 Subject: [PATCH 2/2] fix --- infra/package-lock.json | 4 ++-- infra/package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/infra/package-lock.json b/infra/package-lock.json index ef8b610..7d9e8aa 100644 --- a/infra/package-lock.json +++ b/infra/package-lock.json @@ -1,12 +1,12 @@ { "name": "infra", - "version": "0.1.0", + "version": "0.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "infra", - "version": "0.1.0", + "version": "0.1.1", "dependencies": { "aws-cdk-lib": "2.208.0", "constructs": "^10.0.0" diff --git a/infra/package.json b/infra/package.json index a200a1b..a8aa244 100644 --- a/infra/package.json +++ b/infra/package.json @@ -1,6 +1,6 @@ { "name": "infra", - "version": "0.1.0", + "version": "0.1.1", "bin": { "infra": "bin/infra.js" },