Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
d807c69
feat(core): add post entity
RVANDO12 Apr 24, 2026
e26e26c
feat(core): fix sonar issue and copilot review
RVANDO12 May 4, 2026
fd1b354
feat(core): fix sonar review
RVANDO12 May 4, 2026
a859554
feat(core): fix sonar qube and test
RVANDO12 May 4, 2026
3958089
feat(core): fix validation type check
RVANDO12 May 4, 2026
fb272c2
feat(core): fix review
RVANDO12 May 5, 2026
6f466d6
feat(core): fix end of file
RVANDO12 May 5, 2026
6db02d4
feat(core): call entity template service in entity service
brandPittCode May 6, 2026
d914968
Merge branch 'main' into feat/entity/post
brandPittCode May 11, 2026
a1212e0
feat(core): update the validate template methods calls
brandPittCode May 11, 2026
a24bb98
Merge branch 'main' into feat/entity/post
brandPittCode May 13, 2026
30f86d6
feat(core): update the validate template methods calls
brandPittCode May 13, 2026
5f12fec
feat(core): fix review
RVANDO12 May 18, 2026
ecc92b2
feat(core): add a entity graph service and endpoint
brandPittCode May 19, 2026
1293b54
feat(core): add a entity graph service and endpoint
brandPittCode May 19, 2026
7411267
feat(core): add a entity graph service and endpoint
brandPittCode May 19, 2026
35af97c
feat(core): add post entity
RVANDO12 Apr 24, 2026
54972b1
feat(core): fix sonar issue and copilot review
RVANDO12 May 4, 2026
ad2fbd1
feat(core): fix sonar review
RVANDO12 May 4, 2026
63b1970
feat(core): fix sonar qube and test
RVANDO12 May 4, 2026
13f71f3
feat(core): fix validation type check
RVANDO12 May 4, 2026
2cb2a9e
feat(core): fix review
RVANDO12 May 5, 2026
6df8834
feat(core): fix end of file
RVANDO12 May 5, 2026
e035d4e
feat(core): call entity template service in entity service
brandPittCode May 6, 2026
3f68ff6
feat(core): update the validate template methods calls
brandPittCode May 11, 2026
92192df
feat(core): update the validate template methods calls
brandPittCode May 13, 2026
fb7c2df
feat(core): fix review
RVANDO12 May 18, 2026
c501d32
feat(core): rebase on main
RVANDO12 May 20, 2026
7e9c556
feat(core): add a entity graph service and endpoint
brandPittCode May 20, 2026
48ed5f8
feat(core): fix review after rebase
RVANDO12 May 20, 2026
b68ba4d
feat(entity-graph): add a entity graph service and endpoint
brandPittCode May 20, 2026
fb1cc27
feat(core): implement entities search system
evebrnd May 20, 2026
dd5536a
feat(entity-graph): add a entity graph service and endpoint
brandPittCode May 20, 2026
f2d571b
feat(core): fix static swagger
RVANDO12 May 20, 2026
07d4601
feat(core): fix static swagger
RVANDO12 May 20, 2026
32dbb64
feat(core): fix static swagger
RVANDO12 May 20, 2026
505241f
feat(core): add post entities endpoint and validation
RVANDO12 May 20, 2026
5107f10
feat: add indexes and update spec builder for performance
evebrnd May 20, 2026
6942ddc
feat: add indexes and update spec builder for performance
evebrnd May 20, 2026
b25cfff
fix: rollback flyway extension edit
evebrnd May 20, 2026
3b8c995
feat(entity-graph): add a entity graph service and endpoint
brandPittCode May 20, 2026
579397f
Merge branch 'feat/entity/post' into feat/entity-graph
brandPittCode May 20, 2026
1586490
Merge branch 'main' into feat/entity-graph
brandPittCode May 20, 2026
545078b
feat(entity-graph): add a entity graph service and endpoint
brandPittCode May 20, 2026
90ab092
feat: remove pg_trgm extension
evebrnd May 20, 2026
13cb37d
feat(core): fix andres review
RVANDO12 May 21, 2026
0005347
feat(core): fix andres review
RVANDO12 May 21, 2026
5c6c792
feat(core): refacto test and validation
RVANDO12 May 21, 2026
7fdf3c6
feat(core): update entity endpoint
RVANDO12 May 21, 2026
3fd6eb3
Merge branch 'feat/entity/post' into feat/entity/put
RVANDO12 May 21, 2026
b963fed
feat(core): update entity endpoint
RVANDO12 May 21, 2026
315fe6b
chore: merge changes from put entities
evebrnd May 21, 2026
f945249
feat: use pg_trgm extension
evebrnd May 21, 2026
4ed4124
feat: merge graph branch
evebrnd May 21, 2026
b5ca22d
fix: empty files
evebrnd May 21, 2026
a57ffc8
feat: add filtering on relations_as_target presence
evebrnd May 22, 2026
b89ec6d
feat(core): add a entity graph service and endpoint
brandPittCode May 22, 2026
ca31d6b
Merge branch 'feat/entity-graph' into feat/implement-search-system
brandPittCode May 26, 2026
09f09e3
feat(core): add a entity graph service and endpoint
brandPittCode May 26, 2026
2ab2e28
feat(core): add a entity graph service and endpoint
brandPittCode May 26, 2026
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
5 changes: 3 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
---
version: "3.8"

services:
postgres:
image: postgres:14
image: postgres:18
environment:
POSTGRES_USER: idpcore
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-idpcore_password}
ports:
- "5437:5432"
volumes:
- ./scripts/init-extensions.sql:/docker-entrypoint-initdb.d/01-init-extensions.sql:ro
networks:
- postgres
restart: unless-stopped
Expand Down
Loading