I have several projects in my workspace which I would like to start automatically in VS Code via task.
The structure is:
project1/folder1/folder2/ docker compose start
project1/folder1/folder3/ docker compose start
project2/folder4/ docker start
project 3 ng serve
at best also
ng lint
in Project 3.
In project 4 there are already launch tasks. These should also start automatically
I've already read up a bit on the topic and am trying my hand at the first tasks.json.
My problem at the moment is that I can not get into the subfolder and can not rundocker compose start. Also I don't know how to include the launch task.
The automatic start when opening VS Code works already once.