Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
cd022b5
Refactor GlobalExceptionHandler to improve null exception handling an…
Codespilot May 27, 2026
8da1938
Add TokenMapProfile for mapping Token entity to domain model and upda…
Codespilot May 27, 2026
0064ab0
Update Token class to enforce future issuance date and add revokedAt …
Codespilot May 27, 2026
4593a86
Refactor Token command handlers to use TokenStatus enum and improve e…
Codespilot May 27, 2026
e538130
Enhance PriorityValueFinder with additional find methods for Supplier…
Codespilot May 27, 2026
0c2126f
Enhance AuthlogEventSubscriber to improve IP address retrieval and OS…
Codespilot May 27, 2026
428b807
Enhance authentication and user services with additional methods for …
Codespilot May 27, 2026
629689d
Add OnetimePasswordCreatedEto class and Lombok dependency for OTP man…
Codespilot May 27, 2026
306a8e3
Enhance RandomUtility with flexible random string generation methods …
Codespilot May 27, 2026
543996c
Add hasEvents method to AggregateRoot for event presence checking
Codespilot May 27, 2026
2d3d833
Implement one-time password (OTP) functionality with command, service…
Codespilot May 27, 2026
2d3e109
Refactor OTP sending functionality to accept recipient and usage as s…
Codespilot May 28, 2026
84651c6
Add RabbitMQ configuration and event constants for user locking and O…
Codespilot May 28, 2026
6fd79b9
Initialize bundle module with Spring Boot application, Maven wrapper,…
Codespilot May 29, 2026
ed01883
Refactor JwtAuthenticationFilter package structure to align with fram…
Codespilot May 29, 2026
0606429
Remove unused JWT dependencies from pom.xml to streamline project con…
Codespilot May 29, 2026
b1d9438
Add configuration classes for ModelMapper and OpenAPI security; updat…
Codespilot May 29, 2026
7a9c884
Rename DistributedEventBus to DistributedEventPublisher; refactor con…
Codespilot May 29, 2026
2ce802a
Refactor findByAnyOf method in UserRepositoryImpl to streamline mappi…
Codespilot May 29, 2026
9ef1937
Refactor Dockerfile and pom.xml for improved build process and depend…
Codespilot May 29, 2026
c3a914a
Add application configuration and logging setup in YAML and XML files
Codespilot May 29, 2026
19c4e9b
Add .dockerignore file to exclude VCS, build outputs, logs, and OS files
Codespilot May 29, 2026
9f0b344
Add Maven Compiler Plugin configuration for annotation processing wit…
Codespilot May 29, 2026
3d44cea
Update application configuration and Dockerfile for environment varia…
Codespilot May 29, 2026
fb781f1
Update application configuration and Dockerfile for CONFIG_SEARCH_LOC…
Codespilot May 29, 2026
69573de
Update application configuration and Dockerfile for CONFIG_SEARCH_LOC…
Codespilot May 29, 2026
3b9db77
Add security configuration with username and password support in appl…
Codespilot May 29, 2026
6fb65c2
Add docker-compose configuration for multiple services with environme…
Codespilot May 29, 2026
3d54d1f
Enable cloud configuration and add username/password support in appli…
Codespilot May 29, 2026
0f071d7
Add RabbitMQ configuration with connection factory bean
Codespilot May 29, 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
16 changes: 16 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# VCS and editor
.git
.gitignore
.idea
.vscode

# Build outputs
**/target/

# Local logs and runtime files
logs/
**/*.log

# OS files
.DS_Store

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ build/
### VS Code ###
.vscode/

.air/

.env

application-*.properties
Expand Down
2 changes: 2 additions & 0 deletions bundle/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/mvnw text eol=lf
*.cmd text eol=crlf
33 changes: 33 additions & 0 deletions bundle/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
HELP.md
target/
.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/

### VS Code ###
.vscode/
3 changes: 3 additions & 0 deletions bundle/.mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
wrapperVersion=3.3.4
distributionType=only-script
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.16/apache-maven-3.9.16-bin.zip
295 changes: 295 additions & 0 deletions bundle/mvnw

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

Loading
Loading