Compare commits

..

6 Commits

Author SHA1 Message Date
41020cdc00 fix: postgresql container volume
All checks were successful
Backend CI / Run Maven Tests (push) Successful in 28s
Reviewed-on: #7
Co-authored-by: Jarno Kiesiläinen <jarnokie@gmail.com>
Co-committed-by: Jarno Kiesiläinen <jarnokie@gmail.com>
2025-08-11 17:29:43 +00:00
b4cd05e7b2 Updated datamodel picture in the readme
Reviewed-on: #6
Co-authored-by: Jarno Kiesiläinen <jarnokie@gmail.com>
Co-committed-by: Jarno Kiesiläinen <jarnokie@gmail.com>
2025-08-07 16:36:08 +00:00
286699a1a8 Initial implementation for the backend persistence of activities (#5)
All checks were successful
Backend CI / Run Maven Tests (push) Successful in 27s
Reviewed-on: #5
Co-authored-by: Jarno Kiesiläinen <jarnokie@gmail.com>
Co-committed-by: Jarno Kiesiläinen <jarnokie@gmail.com>
2025-08-07 16:17:46 +00:00
c3764176ac Backend project initialized
All checks were successful
Backend CI / Run Maven Tests (push) Successful in 27s
Co-authored-by: Jarno Kiesiläinen <jarnokie@gmail.com>
Co-committed-by: Jarno Kiesiläinen <jarnokie@gmail.com>
2025-08-02 19:27:17 +00:00
47ac6f4c74 Merge pull request 'feat: added mock search results' (#3) from feature/mock-search-results into main
All checks were successful
Frontend CI / Lint and Build Frontend (push) Successful in 20s
Reviewed-on: http://git.naali.duckdns.org/jarno/vibing/pulls/3
2025-08-02 16:51:57 +00:00
dc26a8c467 Merge pull request 'feature/ci-cd-pipeline' (#2) from feature/ci-cd-pipeline into main
Reviewed-on: http://git.naali.duckdns.org/jarno/vibing/pulls/2
2025-08-02 12:24:15 +00:00
4 changed files with 27 additions and 6 deletions

View File

@@ -41,4 +41,4 @@ jobs:
with:
name: backend-test-results
path: backend/target/surefire-reports/
retention-days: 7
retention-days: 7

View File

@@ -5,10 +5,28 @@
```mermaid
classDiagram
class Activity {
+Long id
+String name
+Location location
+Int priceRange
+Integer 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: 8080
port: 8090
servlet:
context-path: /api
@@ -9,7 +9,7 @@ spring:
# Database Configuration
datasource:
url: jdbc:postgresql://localhost:5432/vibing
url: jdbc:postgresql://dind:5432/vibing
username: vibing
password: vibing
driver-class-name: org.postgresql.Driver

View File

@@ -8,4 +8,7 @@ services:
POSTGRES_PASSWORD: vibing
POSTGRES_DB: vibing
volumes:
- postgres_data:/var/lib/postgresql/data
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: