-
Notifications
You must be signed in to change notification settings - Fork 0
feat: add docker and docker-compose file #26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
WalkthroughThe recent updates focus on enhancing the API application by improving its configuration and deployment setup. Key changes include the addition of a new environment variable, updating the Dockerfile to use Node.js 20, modifying a Postman collection response field, and refining the Docker Compose setup for better service management. Additionally, a configuration tweak was made to the TypeORM setup by removing the Changes
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review Details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (5)
- apps/api/.env.example (1 hunks)
- apps/api/Dockerfile (1 hunks)
- apps/api/Transcript Summarization.postman_collection.json (1 hunks)
- apps/api/docker-compose.yml (1 hunks)
- apps/api/src/config/typeorm/configuration.ts (1 hunks)
Files skipped from review due to trivial changes (4)
- apps/api/.env.example
- apps/api/Dockerfile
- apps/api/docker-compose.yml
- apps/api/src/config/typeorm/configuration.ts
Additional comments not posted (1)
apps/api/Transcript Summarization.postman_collection.json (1)
44-44
: Ensure the change from "id" to "jobId" in the GraphQL mutation query aligns with the API's response structure.Please confirm that the API's response structure has been updated to return "jobId" instead of "id" for the
createSummary
mutation. This change should be reflected in the API documentation and any related code.
API PR Checklist
Pre-requisites
PR Details
PR details have been updated as per the given format (see below)
feat: add admin login endpoint
)Additional Information
ready for review
should be added if the PR is ready to be reviewed)Description:
Added docker and docker-compose files for containerization of application.
Related changes:
Screenshots:
Add any screenshots as required.
Query request and response:
Documentation changes:
Test suite output:
Pending actions:
Additional notes:
Summary by CodeRabbit
New Features
COMPOSE_PROJECT_NAME
environment variable for better project identification.Improvements
docker-compose.yml
to include configurations for MariaDB and Redis services.Bug Fixes
createSummary
mutation query for better clarity.Configuration Changes
autoLoadEntities: true
from TypeORM configuration to streamline database initialization.