Skip to content

Java app with MongoDB for your book list with configured Docker Compose.

Notifications You must be signed in to change notification settings

LucasHazardous/booklist

Repository files navigation

Booklist

Java app with MongoDB for your book list with configured Docker Compose.

Preview

Example 1

Example 2

How to run

  • Docker

  1. Build with Gradle.

    gradle build
    
  2. Run Docker Compose.

    docker compose up -d
    
  • No Docker (Local MongoDB Server Required)

  1. Change first line of application.properties.

    spring.data.mongodb.host=localhost 
    
  2. Run with Gradle.

    gradle bootRun