-
Notifications
You must be signed in to change notification settings - Fork 0
dev to master sync #2
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
Build error
…ts-api-v6 into develop
…ts-api-v6 into develop
|
|
||
| # Connection string for the Members DB used by import:access | ||
| # Example: postgresql://postgres:postgres@localhost:5432/topcoder-services?schema=members | ||
| MEMBER_DB_URL="" |
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.
[💡 maintainability]
Consider providing a default or example value for MEMBER_DB_URL to ensure developers understand the expected format and reduce the risk of misconfiguration.
| with: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # The GITHUB_TOKEN is there by default so you just need to keep it like it is and not necessarily need to add it as secret as it will throw an error. [More Details](https://docs.github.com/en/actions/security-guides/automatic-token-authentication#about-the-github_token-secret) | ||
| LAB45_API_KEY: ${{ secrets.LAB45_API_KEY }} | ||
| exclude: '**/*.json, **/*.md, **/*.jpg, **/*.png, **/*.jpeg, **/*.bmp, **/*.webp' # Optional: exclude patterns separated by commas No newline at end of 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.
[💡 style]
Consider adding a newline at the end of the file to adhere to POSIX standards, which can help avoid potential issues with some tools and version control systems.
| /dist | ||
| /node_modules | ||
| /build | ||
| dist |
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.
[💡 maintainability]
The entry dist is redundant because /dist already covers all directories named dist at any level. Consider removing the redundant entry to keep the .gitignore file clean.
| report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json | ||
|
|
||
| /generated/prisma | ||
| node_modules |
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.
[💡 maintainability]
The entry node_modules is redundant because /node_modules already covers all directories named node_modules at any level. Consider removing the redundant entry to keep the .gitignore file clean.
| ENV NODE_ENV production | ||
| ENV NODE_ENV=production | ||
| # Install OpenSSL runtime (provides libssl.so.3 for Prisma musl OpenSSL 3) | ||
| RUN apk add --no-cache openssl |
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.
[maintainability]
Consider specifying a version for the openssl package to ensure consistent builds. Without a version, future builds may break if a backward-incompatible change is introduced in openssl.
No description provided.