Jarno Kiesiläinen 41020cdc00
All checks were successful
Backend CI / Run Maven Tests (push) Successful in 28s
fix: postgresql container volume
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
2025-08-11 17:29:43 +00:00
2025-08-02 16:37:14 +03:00
2025-08-02 10:49:24 +03:00

Vibing application

Data model

classDiagram
    class Activity {
        +Long id
        +String name
        +Location location
        +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
Description
No description provided
Readme 132 KiB
Languages
JavaScript 40.3%
CSS 32.2%
Java 25.2%
Shell 1.7%
HTML 0.6%