-
Notifications
You must be signed in to change notification settings - Fork 0
feat!: add traces and upgrade pgboss (MAPCO-10632) #19
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
28 commits
Select commit
Hold shift + click to select a range
9dc1a21
feat: add traces
Powfu2 ccba293
feat: add traces + pgboss-12.8
Powfu2 587abf1
chore: delete file
Powfu2 d72598e
chore: update package-lock
Powfu2 789ac44
chore: update pg version
Powfu2 0ffb191
chore: update pg version
Powfu2 b9edb8f
chore: update pg version
Powfu2 9bda8f5
chore: solve cr
Powfu2 a18fb71
chore: solve cr
Powfu2 289ca32
chore: solve cr
Powfu2 6c739c1
chore: solve cr
Powfu2 1290a6d
chore: solve cr
Powfu2 3cae7f5
chore: solve cr
Powfu2 c250443
chore: solve cr
Powfu2 d1b8d70
chore: solve cr
Powfu2 66fc8e7
chore: solve cr
Powfu2 1d22a38
chore: solve cr
Powfu2 27d68fc
fix: add readiness
Powfu2 4a34313
fix: add readiness
Powfu2 edae29f
fix: add readiness
Powfu2 6f9e83f
feat: add function
Powfu2 c79ef9f
feat: add libs
Powfu2 abe28a0
fix: tileprocessor logic
Powfu2 3f2910f
fix: pr file
Powfu2 8d8dde1
fix: pr file
Powfu2 017d620
fix: pr file
Powfu2 2f1a57d
feat: add test
Powfu2 38afd8c
fix: add the new schemas
Powfu2 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
Some comments aren't visible on the classic Files Changed page.
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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| * @MapColonies/vector-team |
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 |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| name: Jira Integration | ||
| on: | ||
| pull_request: | ||
| types: [opened, edited, synchronize] | ||
|
|
||
| permissions: | ||
| statuses: write | ||
| pull-requests: write | ||
|
|
||
| jobs: | ||
| jira-validation: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: mapcolonies/javascript-github-actions/actions/jira-integration@jira-integration-v1 |
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 |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| name: PR Author Auto Assign | ||
|
|
||
| on: | ||
| pull_request_target: | ||
| types: [opened, reopened] | ||
|
|
||
| permissions: | ||
| pull-requests: write | ||
|
|
||
| jobs: | ||
| assign-author: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: toshimaru/auto-author-assign@v2.1.1 | ||
| with: | ||
| repo-token: ${{ secrets.GH_PAT }} |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| v20 | ||
| v24 |
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,35 +1,34 @@ | ||
| FROM node:20-bullseye as build | ||
| FROM node:24 AS build | ||
|
|
||
| WORKDIR /tmp/buildApp | ||
|
|
||
| # Install build dependencies for sharp (Debian uses apt-get) | ||
| RUN apt-get update && apt-get install -y python3 make g++ \ | ||
| && rm -rf /var/lib/apt/lists/* | ||
| WORKDIR /tmp/buildApp | ||
|
|
||
| COPY ./package*.json ./ | ||
| COPY .husky/ .husky/ | ||
| RUN npm install | ||
|
|
||
| RUN npm install | ||
| COPY . . | ||
| RUN npm run build | ||
|
|
||
| FROM node:20-bullseye-slim as production | ||
| FROM node:24.10.0-alpine3.22 AS production | ||
|
|
||
| RUN apt-get update && apt-get install -y dumb-init \ | ||
| && rm -rf /var/lib/apt/lists/* | ||
| RUN apk add dumb-init | ||
|
|
||
| ENV NODE_ENV=production | ||
| ENV SERVER_PORT=8080 | ||
|
|
||
|
|
||
| WORKDIR /usr/src/app | ||
|
|
||
| COPY --chown=node:node package*.json ./ | ||
| COPY .husky/ .husky/ | ||
|
|
||
| RUN npm ci --only=production | ||
|
|
||
| COPY --chown=node:node --from=build /tmp/buildApp/dist . | ||
| COPY --chown=node:node ./config ./config | ||
|
|
||
|
|
||
| USER node | ||
| EXPOSE ${SERVER_PORT} | ||
| EXPOSE 8080 | ||
| CMD ["dumb-init", "node", "--import", "./instrumentation.mjs", "./index.js"] |
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
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.
Uh oh!
There was an error while loading. Please reload this page.