Skip to content

kgoedert/quarkus-panache

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

What

Very simple crud application using quarkus to manage movies and their actors contact information

Why

To test quarkus with panache extension.

Database

To build the dabase image:

cd src/main/docker/postgres
docker build -t postgres .

In src/main/docker/postgres there is a Dockerfile to run a postgres database. You can run it with:

docker run -e POSTGRES_PASSWORD=mysecretpassword -v <path to postgres data folder>:/var/lib/postgresql/data -p 5432:5432 postgres

To configure the database in the application go to src/main/resources/application.properties

Run quarkus in dev mode

./mvnw compile quarkus:dev

The post related to this code can be found here

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published