Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 1.16 KB

README_FRONTEND.md

File metadata and controls

42 lines (27 loc) · 1.16 KB

EP ULA Coding Challenge

Index

Frontend Challenge

Task:

  • Create a project which displays and filters the information received by the Documents API via rest calls

Acceptance Criteria:

  • Create a project using Angular
  • Use the Documents API and display the information
  • Create a filter to search a document by name
  • Describe in a README.md file how to run and test your service

Bonus points:

  • Filter by category
  • Sort by fields e.g. Name, Type, Size, Deleted
  • Error Handling e.g. Display message when the Documents API is not available
  • [...]

Using the Document test API

  1. clone this repository

  2. Create the docker image: docker build -t europace/document-api .

  3. Run the docker image: docker run --rm -p 8080:8080 europace/document-api

  4. Example request: curl --location --request GET 'http://localhost:8080/v1/documents'