Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 975 Bytes

File metadata and controls

27 lines (17 loc) · 975 Bytes

Requirements:

Build an app that manages tasks. Importantly, tasks can have dependencies on other tasks.

Features:

  • Display a list of tasks
  • Show a visualization of tasks with dependency connections
  • Find an ordering of tasks that respects dependencies.

Backend Challenge

Build a backend that implements the API described in API.md.

You can use any language and framework you like. The backend should persist data to some kind of database.

Frontend Challenge

Given the API described in API.md, build a frontend that implements the expected features.

We have provided a backend server that you can use to test your frontend. On startup, it will already have some example tasks with dependencies.

Note

If you choose the frontend challenge, check out the with-backend branch in order to have the provided backend server.

If you choose the backend challenge, just use the main branch.