I wonder if it's possible to have some sort of a run configuration in VSCode that will open 2 terminal tabs (preferably by splitting 1 window into 2 terminal tabs vertically) and run 2 separate commands in them.
Use case: I have a repository with backend and frontend. When I have to develop this application, I need to execute:
cd ./backend
poetry run dev
# in 2nd tab
cd ./frontend
npm run dev
Every time I split terminal manually and manually run these commands. Is it possible to automate it? So I can click 1 button or something?
Thanks