Skip to content
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
a71d8c6
added new parameters for survey repo and prno
MattG57 Apr 10, 2025
bb6a991
dropdown autocomplete with validation for survey userId
MattG57 Apr 11, 2025
73d141a
Reworked targeting, fixed som little issues with survey via url param…
MattG57 Apr 12, 2025
b81f46b
Made some improvements to the target calc logging....added a comment …
MattG57 Apr 12, 2025
8169514
added swagger api docs and included oauth info if it is available to …
MattG57 Apr 13, 2025
9fd59a8
passed req to getStatus
MattG57 Apr 13, 2025
5f40148
fixed data quality issues from spiking per user charts
MattG57 Apr 13, 2025
8020f0a
fixing type issues breaking npm build
MattG57 Apr 13, 2025
d7ba4a5
more type errors needed fixing
MattG57 Apr 13, 2025
f76f771
fixed type errors in target calc service
MattG57 Apr 13, 2025
25adfd2
configured more runtime memory for npm
MattG57 Apr 13, 2025
d5c62ab
listing all headers so we can diagnose/fix auth header passing
MattG57 Apr 13, 2025
6df3c82
increase memory to 6Gig
MattG57 Apr 13, 2025
62b56b2
Revamped surveys with usage info
MattG57 Apr 14, 2025
8a59b78
Added Survey statistics to the Seats page, so it is becoming the deve…
MattG57 Apr 14, 2025
2ed3bae
fixed oom problem, improved targeting logic.
MattG57 Apr 15, 2025
5a5abf2
fixed api/seats/id query to work consistently
MattG57 Apr 17, 2025
ae2399e
fixed typescript errors
MattG57 Apr 17, 2025
ba248a5
fix remaining type error
MattG57 Apr 17, 2025
5c8f52c
refactor: improve error handling and type safety in SeatsService methods
MattG57 Apr 17, 2025
1946f47
feat: implement duplicate event handling in webhook listeners and add…
MattG57 Apr 30, 2025
8bfc91b
feat: add Express server setup and static file serving for Angular app
MattG57 May 1, 2025
fe2c483
feat: enhance metrics calculations and logging in TargetCalculationSe…
MattG57 May 9, 2025
120920e
feat: add new metrics fields and update calculations in TargetCalcula…
MattG57 May 9, 2025
69c430c
feat: update adoption chart yMax value and add targets data loading i…
MattG57 May 10, 2025
bc1d5e0
feat: update yMax value for adoption chart and improve activity metri…
MattG57 May 10, 2025
16d2047
feat: improve activity metrics filtering to handle undefined and zero…
MattG57 May 10, 2025
ca4d469
feat: update chart titles for clarity and adjust y-axis settings in a…
MattG57 May 10, 2025
01abb20
feat: enhance daily activity chart with new metrics and acceptance ra…
MattG57 May 10, 2025
c3458fc
lint
austenstone May 22, 2025
f674eb3
lint
austenstone May 22, 2025
8cc2ef1
cleanup
austenstone May 22, 2025
da26730
cleanup
austenstone May 22, 2025
46c969b
fix: resolve template errors by adding missing properties and improvi…
austenstone May 22, 2025
836320e
refactor: remove unused import from members.service.ts
austenstone May 22, 2025
ca19185
fix: update return types for getMemberByLogin and getAllMembers metho…
austenstone May 22, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
7 changes: 7 additions & 0 deletions backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"description": "Demonstrate the value of GitHub",
"main": "src/index.ts",
"scripts": {
"start": "node --enable-source-maps dist/index.js | bunyan -o short -l info",
"start": "node -e \"process.env.NODE_HEAP_SIZE = process.env.NODE_HEAP_SIZE || '6120'; console.log('Using memory limit: ' + process.env.NODE_HEAP_SIZE + 'MB'); process.exit(0)\" && NODE_OPTIONS=\"--max-old-space-size=${NODE_HEAP_SIZE:-6120}\" node --enable-source-maps dist/index.js | bunyan -o short -l info",
"test": "vitest",
"build": "tsc",
"dev": "tsx watch src/index.ts | bunyan -o short -l info",
"dev": "NODE_OPTIONS='--max-old-space-size=6120' tsx watch src/index.ts | bunyan -o short -l info",
"lint": "eslint src/**/*.ts",
"compose:start": "docker-compose -f ../compose.yml up -d",
"db:start": "docker-compose -f ../compose.yml up -d mongo",
Expand All @@ -20,6 +20,7 @@
"cors": "^2.8.5",
"cron": "^4.1.3",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"eventsource": "^3.0.6",
"express": "^4.21.2",
Expand Down
Loading
Loading