Compare commits

..

7 Commits

Author SHA1 Message Date
b04366163f Fix flyway migration and use h2 in unit tests.
All checks were successful
Backend CI / Run Maven Tests (pull_request) Successful in 1m21s
2025-08-07 19:04:21 +03:00
2e14ea06c9 WIP for activity modeling and migration.
Some checks failed
Backend CI / Run Maven Tests (pull_request) Failing after 4m32s
2025-08-04 21:07:46 +03:00
2a0d7fa1b8 fix: corrected path for the maven step
All checks were successful
Backend CI / Run Maven Tests (pull_request) Successful in 1m22s
2025-08-02 22:23:54 +03:00
823f91804a feat: added setup maven step to the backend pipeline
Some checks failed
Backend CI / Run Maven Tests (pull_request) Failing after 7s
2025-08-02 22:17:40 +03:00
c5433dfefd feat: removed backend pipeline step for caching m2
Some checks failed
Backend CI / Run Maven Tests (pull_request) Failing after 12s
2025-08-02 22:12:05 +03:00
8af5ea02cd feat: added backend ci pipeline and readme for pipelines
Some checks failed
Backend CI / Run Maven Tests (pull_request) Failing after 15s
2025-08-02 21:02:30 +03:00
f1dff9684b feat: initialized the backend project 2025-08-02 20:53:50 +03:00
4 changed files with 6 additions and 27 deletions

View File

@@ -5,28 +5,10 @@
```mermaid
classDiagram
class Activity {
+Long id
+String name
+Location location
+Integer priceRange
+Int priceRange
+List~String~ tags
+String description
+LocalDateTime createdAt
+LocalDateTime updatedAt
}
class Location {
+Long id
+String name
+String address
+String city
+String country
+String postalCode
+Double latitude
+Double longitude
+LocalDateTime createdAt
+LocalDateTime updatedAt
}
Activity <-- Location : belongs to
```

View File

@@ -1,5 +1,5 @@
server:
port: 8090
port: 8080
servlet:
context-path: /api
@@ -9,7 +9,7 @@ spring:
# Database Configuration
datasource:
url: jdbc:postgresql://dind:5432/vibing
url: jdbc:postgresql://localhost:5432/vibing
username: vibing
password: vibing
driver-class-name: org.postgresql.Driver

View File

@@ -9,6 +9,3 @@ services:
POSTGRES_DB: vibing
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: