Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 367 Bytes

Readme.md

File metadata and controls

17 lines (14 loc) · 367 Bytes

Dummy Rest API Example

Simple REST API service for mentees to practice API testing

Api documentation

Build and start service using Maven

mvn clean install
mvn spring-boot:run

Build and start service as a daemon using Docker

docker build -t dummyrestapi .
docker run -d -p 80:8080 dummyrestapi