fix: fixing the issue on the initialization of the web application

Adding .env.example for environment variable management
Updating .gitignore to exclude sensitive files
Modifying pom.xml to include new dependencies
Updating application.properties for better configuration
This commit is contained in:
2026-01-18 17:00:19 -05:00
parent fd29446433
commit 7f1aca8c09
5 changed files with 50 additions and 0 deletions

10
pom.xml
View File

@@ -48,6 +48,16 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>