-
Notifications
You must be signed in to change notification settings - Fork 4
Fixes #56 : Top Level docker-compose #57
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
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
9a6f584
Added yaml for starting up tools for local development
Kmadhav824 7bc78d4
Updated gitignore for neglecting logs and stale artifacts
Kmadhav824 8e409f0
Added Migration Scripts
Kmadhav824 04ff2f3
Corrected schema path across services, packages updated, readme changes
Kmadhav824 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,34 @@ | ||
| node_modules | ||
| # Keep environment variables out of version control | ||
| # Dependencies | ||
| node_modules/ | ||
| **/node_modules/ | ||
| .pnpm-store/ | ||
|
|
||
| # Environment and secrets | ||
| .env | ||
| .env.* | ||
| !.env.example | ||
| !.env.*.example | ||
|
|
||
| # Logs and runtime files | ||
| logs/ | ||
| **/logs/ | ||
| *.log | ||
| *.pid | ||
| *.seed | ||
| *.pid.lock | ||
| npm-debug.log* | ||
| yarn-debug.log* | ||
| yarn-error.log* | ||
| pnpm-debug.log* | ||
|
|
||
| # Build/test output | ||
| dist/ | ||
| build/ | ||
| coverage/ | ||
| *.tsbuildinfo | ||
|
|
||
| # OS / editor local files | ||
| .DS_Store | ||
| workers/node_modules | ||
| backend/node_modules | ||
| frontend/node_modules | ||
| .DS_Store | ||
| .env | ||
| .pnpm-store | ||
| .DS_Store | ||
| .codex | ||
| .codex | ||
| .vscode/ | ||
| .idea/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 0 additions & 35 deletions
35
backend/logs/combined/.0249dc91aa5f529d3b84500f8c29e94ef13aaf30-audit.json
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Importing the schema via a deep relative path (
../../../db-schema/src/index) tightly couples backend to the monorepo folder layout and bypasses the existing TS path mapping fordb-schema(see backend/tsconfig.jsonpaths). Prefer importing fromdb-schemaand fixing the package to export/build the intended entrypoint (e.g., ensure../db-schema/distexists or adjustdb-schemaexports/paths).