Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 873 Bytes

README.md

File metadata and controls

42 lines (26 loc) · 873 Bytes

Project Title

Simple web services project which can be used to practice automated testing against.

Description

.Net Core 3.1 services which cover 3 controllers.

  • Address
  • Car
  • Client

Each controller supports GET, POST, PUT, DELETE

Client is 1 to many Addresses
Client is 1 to many Cars

The services can be ran using IIS Express or Docker and swagger documentation can be found at http://localhost:{port}/swagger. API or performance tests can be executed against the running services.

Getting Started

Dependencies

  • Docker

OR

Running the Services

Docker

  • docker build -t webapi .
  • docker run -d -p 44387:80 --name myservices webapi

IIS Express

  • Open solution in Visual Studio
  • Select IIS Express

Authors

Joe Batt