Sanne / quarkus-todo-app

Implementation of todo backend and use vuejs as frontend

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TODO Applications with Quarkus

GitHub Workflow Status

Database

Run:

docker run --ulimit memlock=-1:-1 -it --rm=true --memory-swappiness=0 \
    --name postgres-quarkus-rest-http-crud -e POSTGRES_USER=restcrud \
    -e POSTGRES_PASSWORD=restcrud -e POSTGRES_DB=rest-crud \
    -p 5432:5432 postgres:10.5

Imperative Application

cd quarkus-todo
mvn compile quarkus:dev

Open: http://localhost:8080/

Reactive Application

This version uses Hibernate Reactive, RESTEasy Reactive and Mutiny.

cd quarkus-todo-reactive
mvn compile quarkus:dev

Open: http://localhost:8080/

About

Implementation of todo backend and use vuejs as frontend


Languages

Language:Java 61.1%Language:JavaScript 25.3%Language:HTML 13.1%Language:Shell 0.4%