Skip to content

Commit 8453353

Browse files
Merge pull request #330 from zeeshanakram3/fix-start-youtube-synch-script
fix: rename 'start-youtube-synch-httpApi.sh' to 'start-youtube-synch.sh'
2 parents 79e6d2b + f5ff2fe commit 8453353

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ COPY . .
3030
RUN npm run build
3131

3232
# Set the command to run when a container based on the image is started
33-
CMD ["./scripts/start-youtube-synch-httpApi.sh"]
33+
CMD ["./scripts/start-youtube-synch.sh"]

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ services:
4444
- 127.0.0.1:${YT_SYNCH__HTTP_API__PORT}:${YT_SYNCH__HTTP_API__PORT}
4545
networks:
4646
- youtube-synch
47-
command: ['./scripts/start-youtube-synch-httpApi.sh', '--service', 'httpApi']
47+
command: ['./scripts/start-youtube-synch.sh', '--service', 'httpApi']
4848

4949
youtube-synch_sync:
5050
image: youtube-synch:${IMAGE_TAG}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
"postpack": "rm -f oclif.manifest.json",
77
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
88
"build": "rm -rf lib && tsc --build tsconfig.json && cp -R ./src/infrastructure/pulumi ./lib/infrastructure/pulumi",
9-
"start": "DEPLOYMENT_ENV=dev ./scripts/start-youtube-synch-httpApi.sh",
9+
"start": "DEPLOYMENT_ENV=dev ./scripts/start-youtube-synch.sh",
1010
"lint": "eslint ./src --ext .ts",
11-
"start:prod": "./scripts/start-youtube-synch-httpApi.sh",
11+
"start:prod": "./scripts/start-youtube-synch.sh",
1212
"docker:start": "DEPLOYMENT_ENV=dev IMAGE_TAG=$(./scripts/code-shasum.sh) docker-compose up -d",
1313
"docker:start:prod": "IMAGE_TAG=$(./scripts/code-shasum.sh) docker-compose up -d",
1414
"dynamodb:local:start": "npm run dynamodb:local:stop && export DEPLOYMENT_ENV=local && ./src/infrastructure/deploy.sh",

0 commit comments

Comments
 (0)