Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 380 Bytes

README.md

File metadata and controls

18 lines (16 loc) · 380 Bytes

finance-otter-server

Run the application in development mode

First, start a postgres instance. Ideally in Docker:

docker run -d \
  -p 5432:5432 \
  --name postgres-dev \
  -e POSTGRES_PASSWORD=postgres \
  -e POSTGRES_USER=postgres \
  -e POSTGRES_DB=finodev \
  postgres:latest

Then, start the application in dev mode:

mvn compile quarkus:dev