Skip to content

Commit

Permalink
Merge pull request #330 from zeeshanakram3/fix-start-youtube-synch-sc…
Browse files Browse the repository at this point in the history
…ript

fix: rename 'start-youtube-synch-httpApi.sh' to 'start-youtube-synch.sh'
  • Loading branch information
zeeshanakram3 committed May 31, 2024
2 parents 79e6d2b + f5ff2fe commit 8453353
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ COPY . .
RUN npm run build

# Set the command to run when a container based on the image is started
CMD ["./scripts/start-youtube-synch-httpApi.sh"]
CMD ["./scripts/start-youtube-synch.sh"]
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ services:
- 127.0.0.1:${YT_SYNCH__HTTP_API__PORT}:${YT_SYNCH__HTTP_API__PORT}
networks:
- youtube-synch
command: ['./scripts/start-youtube-synch-httpApi.sh', '--service', 'httpApi']
command: ['./scripts/start-youtube-synch.sh', '--service', 'httpApi']

youtube-synch_sync:
image: youtube-synch:${IMAGE_TAG}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"build": "rm -rf lib && tsc --build tsconfig.json && cp -R ./src/infrastructure/pulumi ./lib/infrastructure/pulumi",
"start": "DEPLOYMENT_ENV=dev ./scripts/start-youtube-synch-httpApi.sh",
"start": "DEPLOYMENT_ENV=dev ./scripts/start-youtube-synch.sh",
"lint": "eslint ./src --ext .ts",
"start:prod": "./scripts/start-youtube-synch-httpApi.sh",
"start:prod": "./scripts/start-youtube-synch.sh",
"docker:start": "DEPLOYMENT_ENV=dev IMAGE_TAG=$(./scripts/code-shasum.sh) docker-compose up -d",
"docker:start:prod": "IMAGE_TAG=$(./scripts/code-shasum.sh) docker-compose up -d",
"dynamodb:local:start": "npm run dynamodb:local:stop && export DEPLOYMENT_ENV=local && ./src/infrastructure/deploy.sh",
Expand Down
File renamed without changes.

0 comments on commit 8453353

Please sign in to comment.