Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 6 days ago
JSON representation
Just an example
- Host: GitHub
- URL: https://github.com/raphael-97/quarkus-simple-rest
- Owner: raphael-97
- Created: 2024-05-24T00:12:23.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-30T13:40:44.000Z (8 months ago)
- Last Synced: 2025-01-31T22:07:44.597Z (6 days ago)
- Topics: docker, docker-compose, postgresql, quarkus, quarkus-hibernate-orm, quarkus-panache, quarkus-rest
- Language: Java
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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:devor
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}`