Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/raphael-97/quarkus-simple-rest

Just an example
https://github.com/raphael-97/quarkus-simple-rest

docker docker-compose postgresql quarkus quarkus-hibernate-orm quarkus-panache quarkus-rest

Last synced: 8 days ago
JSON representation

Just an example

Awesome Lists containing this project

README

        

# Quarkus-Simple-REST

## Getting started
1. Clone the project
```
git clone https://github.com/raphael-97/Quarkus-simple-REST
```

2. Run in the root of this project
```
mvnw compile quarkus:dev

or

docker compose up
```

3. In your browser, navigate to `http://localhost:8080/q/swagger-ui` to test the endpoints

### Endpoints

`GET /customers`

`GET /customers/{id}`

`POST /customers`

`PUT /customers/{id}`

`DELETE /customers/{id}`