Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 1.93 KB

README.md

File metadata and controls

44 lines (28 loc) · 1.93 KB

Coveo Front End Challenge

The challenge

The challenge, if you accept it, is about building a search interface based on the Coveo REST API.

See the documentation section

You can access this api through https://cloudplatform.coveo.com/rest/search with the token we will provide you. This token grants you access to a Coveo index containing different types of alcohols which are sold in SAQ.

Exemples

Searching Amber Ales

https://cloudplatform.coveo.com/rest/search?access_token=YOUR_TOKEN&q=Bi%C3%A8re%20rousse

Searching beers under 10$

https://cloudplatform.coveo.com/rest/search?access_token=YOUR_TOKEN&q=@tpprixnum%3C10

Searching Merlot

https://cloudplatform.coveo.com/rest/search?access_token=YOUR_TOKEN&q=@tpcepagenomsplitgroup==Merlot

Documentation

Inspiration

Need inspiration? you can see some examples of our sites and implementations here:

But, don't copy, we will know :)

Advices

  • Try to design and implement your solution as you would do for real production code. Show us how you create clean, maintainable code that does awesome stuff. Build something that we'd be happy to contribute to. This is not a programming contest where dirty hacks win the game.
  • Feel free to add more features! Really, we're curious about what you can think of. We'd expect the same if you worked with us.
  • Documentation and maintainability is a plus.
  • Don't you forget those unit tests.