Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 1010 Bytes

README.md

File metadata and controls

36 lines (30 loc) · 1010 Bytes

react-pairing-challenge

a React pairing challenge for prospective candidates

Intro

This is a simple API that we require a new front end for. The API and the challenge will be explained in detail at the start of the meeting.

Build

You will need Docker installed on your computer for this challenge. Details can be found here... https://docs.docker.com/engine/install/

To build the API, open your CLI in the root of this React-Pairing-Challenge repo and run the command...

make build

This will generate all the mocks and docs

Run

To run the API while still in the root of this repo run the command...

make start

If you want to see start up logs run...

make start_with_logs

To stop the API at any point run the command...

make stop

Once the program is running, Swagger documentation reagarding the API will be available at http://localhost:8083/swagger/index.html

Test

To run the test suite, from the root of this directory, run the command...

make test