Feat: first implementation of postgres db for backend
All checks were successful
CI / build (push) Successful in 13s

This commit is contained in:
Théo Le Lez
2025-02-11 00:08:53 +01:00
parent c32eea8a40
commit 36e4967394
28 changed files with 1205 additions and 3 deletions

View File

@ -20,6 +20,10 @@ repositories {
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation('org.springframework.boot:spring-boot-starter-validation')
implementation('org.springframework.boot:spring-boot-starter-data-rest')
implementation 'org.postgresql:postgresql'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}