Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 598 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 598 Bytes

wit-customer

ReST endpoints:

  1. GET localhost:8080/customer/{id} - retrieve customer record associated with id
  2. POST localhost:8080/customer/create - create new customer from form-data
  3. PUT localhost:8080/customer/{id} - update customer record associated with id
  4. DELETE localhost:8080/customer/{id} - delete customer record associated with id

Working with the microservice:

    $ cd wit-customer
    $ docker-compose up --build # this starts the microservice
    ^C # abort the process
    $ docker-compose down # gracefully stop the microservice