Docker Desktop:
Node:
First place the firebase serviceAccountKey.json within the backend directory
within the main directory run the following command
docker compose up -dfrontend link localhost:5173
To make your ide happy, add packages locally with node
cd backend # and frontend
npm iIf you need to add a new package to the frontend or backend
docker compose downcd backend # or frontend
npm install some-package
npm install @types/some-package --save-dev # for TypeScript dependenciesdocker compose build backend # or frontend
docker compose up