Compare commits
7 Commits
main
...
b04366163f
| Author | SHA1 | Date | |
|---|---|---|---|
| b04366163f | |||
| 2e14ea06c9 | |||
| 2a0d7fa1b8 | |||
| 823f91804a | |||
| c5433dfefd | |||
| 8af5ea02cd | |||
| f1dff9684b |
@@ -41,4 +41,4 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: backend-test-results
|
name: backend-test-results
|
||||||
path: backend/target/surefire-reports/
|
path: backend/target/surefire-reports/
|
||||||
retention-days: 7
|
retention-days: 7
|
||||||
22
README.md
22
README.md
@@ -5,28 +5,10 @@
|
|||||||
```mermaid
|
```mermaid
|
||||||
classDiagram
|
classDiagram
|
||||||
class Activity {
|
class Activity {
|
||||||
+Long id
|
|
||||||
+String name
|
+String name
|
||||||
+Location location
|
+Location location
|
||||||
+Integer priceRange
|
+Int priceRange
|
||||||
+List~String~ tags
|
+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
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
server:
|
server:
|
||||||
port: 8090
|
port: 8080
|
||||||
servlet:
|
servlet:
|
||||||
context-path: /api
|
context-path: /api
|
||||||
|
|
||||||
@@ -9,7 +9,7 @@ spring:
|
|||||||
|
|
||||||
# Database Configuration
|
# Database Configuration
|
||||||
datasource:
|
datasource:
|
||||||
url: jdbc:postgresql://dind:5432/vibing
|
url: jdbc:postgresql://localhost:5432/vibing
|
||||||
username: vibing
|
username: vibing
|
||||||
password: vibing
|
password: vibing
|
||||||
driver-class-name: org.postgresql.Driver
|
driver-class-name: org.postgresql.Driver
|
||||||
|
|||||||
@@ -8,7 +8,4 @@ services:
|
|||||||
POSTGRES_PASSWORD: vibing
|
POSTGRES_PASSWORD: vibing
|
||||||
POSTGRES_DB: vibing
|
POSTGRES_DB: vibing
|
||||||
volumes:
|
volumes:
|
||||||
- postgres_data:/var/lib/postgresql/data
|
- postgres_data:/var/lib/postgresql/data
|
||||||
|
|
||||||
volumes:
|
|
||||||
postgres_data:
|
|
||||||
Reference in New Issue
Block a user