This document outlines the steps to manage dependencies for multiple projects using a task-based approach.
Install taskfile with this command:
npm install -g @go-task/cli
To clone all dependencies of all projects, use the following command:
task clone
After cloning the repositories, you need to install the dependencies for all projects. Run the following command:
task install
task docker