Skip to content

Commit e35e2f9

Browse files
authored
chore: demo preparation (#412)
1 parent dd5ea64 commit e35e2f9

File tree

78 files changed

+90
-116
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+90
-116
lines changed

package-lock.json

Lines changed: 9 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
],
4040
"dependencies": {
4141
"dayjs": "^1.11.13",
42-
"jitar": "^0.9.0",
42+
"jitar": "^0.9.2",
4343
"minio": "^8.0.4",
4444
"mongodb": "^6.13.0",
4545
"openid-client": "^6.4.1",
@@ -51,7 +51,7 @@
5151
"zod": "^3.24.2"
5252
},
5353
"devDependencies": {
54-
"@jitar/plugin-vite": "^0.9.0",
54+
"@jitar/plugin-vite": "^0.9.2",
5555
"@types/node": "22.13.0",
5656
"@types/react": "^19.1.0",
5757
"@types/react-dom": "^19.1.1",

segments/notification.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{
22
"./domain/notification/create": { "default": { "access": "protected" } },
33
"./domain/notification/getById": { "default": { "access": "protected" } },
4-
"./domain/notification/getRecent": { "default": { "access": "protected" } }
4+
"./domain/notification/getByPostId": { "default": { "access": "protected" } },
5+
"./domain/notification/getRecent": { "default": { "access": "protected" } },
6+
"./domain/notification/remove": { "default": { "access": "protected" } }
57
}

segments/reads.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"./domain/post.metrics/getByPost": { "default": { "access": "protected" } },
2323

2424
"./domain/rating/exists": { "default": { "access": "protected" } },
25+
"./domain/rating/toggle/getData": { "default": { "access": "protected" } },
2526

2627
"./domain/relation/exists": { "default": { "access": "protected" } },
2728
"./domain/relation/explore": { "default": { "access": "protected" } },

segments/writes.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"./domain/creator/update": { "default": { "access": "protected" } },
1010

1111
"./domain/creator.metrics/create/insertData": { "default": { "access": "protected" } },
12+
"./domain/creator.metrics/update": { "default": { "access": "protected" } },
1213

1314
"./domain/image/save": { "default": { "access": "protected" } },
1415
"./domain/image/erase": { "default": { "access": "protected" } },
@@ -19,6 +20,7 @@
1920
"./domain/post/update": { "default": { "access": "protected" } },
2021

2122
"./domain/post.metrics/create/insertData": { "default": { "access": "protected" } },
23+
"./domain/post.metrics/update": { "default": { "access": "protected" } },
2224

2325
"./domain/rating/create": { "default": { "access": "protected" } },
2426
"./domain/rating/erase": { "default": { "access": "protected" } },

services/bff.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
{
22
"url": "http://127.0.0.1:4000",
33
"setUp": [
4-
"./integrations/runtime/setUpNode"
4+
"./integrations/runtime/setUpBff"
55
],
66
"tearDown": [
7-
"./integrations/runtime/tearDownNode"
8-
],
9-
"healthChecks": [
10-
"./integrations/runtime/fileStoreHealthCheck",
11-
"./integrations/runtime/databaseHealthCheck"
7+
"./integrations/runtime/tearDownBff"
128
],
139
"worker":
1410
{

services/notification.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
{
22
"url": "http://127.0.0.1:4001",
33
"setUp": [
4-
"./integrations/runtime/setUpNode"
4+
"./integrations/runtime/setUpWorker"
55
],
66
"tearDown": [
7-
"./integrations/runtime/tearDownNode"
7+
"./integrations/runtime/tearDownWorker"
88
],
99
"healthChecks": [
10-
"./integrations/runtime/notificationHealthCheck",
1110
"./integrations/runtime/databaseHealthCheck"
1211
],
1312
"worker":

services/reads.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"url": "http://127.0.0.1:4002",
33
"setUp": [
4-
"./integrations/runtime/setUpNode"
4+
"./integrations/runtime/setUpWorker"
55
],
66
"tearDown": [
7-
"./integrations/runtime/tearDownNode"
7+
"./integrations/runtime/tearDownWorker"
88
],
99
"healthChecks": [
1010
"./integrations/runtime/fileStoreHealthCheck",

services/reads2.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"url": "http://127.0.0.1:4003",
33
"setUp": [
4-
"./integrations/runtime/setUpNode"
4+
"./integrations/runtime/setUpWorker"
55
],
66
"tearDown": [
7-
"./integrations/runtime/tearDownNode"
7+
"./integrations/runtime/tearDownWorker"
88
],
99
"healthChecks": [
1010
"./integrations/runtime/fileStoreHealthCheck",

services/repository.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"repository":
44
{
55
"serveIndexOnNotFound": true,
6-
"assets": ["index.html", "main.js", "assets/**/*", "webui/**/*"]
6+
"assets": ["index.html", "main.js", "assets/**/*", "webui/**/*", "registerSW.js", "sw.js", "workbox-*.js", "manifest.webmanifest" ]
77
}
88
}

0 commit comments

Comments
 (0)