Build an app that manages tasks. Importantly, tasks can have dependencies on other tasks.
- Display a list of tasks
- Show a visualization of tasks with dependency connections
- Find an ordering of tasks that respects dependencies.
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.
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.