To run backend and databases through docker run:
cd backend/ && docker compose up -d && npm run devopen another terminal and run
cd frontend/ && npm run devto setup prisma run these commands in backend folder
npx prisma generate
npx prisma migrate devMake sure to do npm install in both directories and also add .env files for both backend and frontend for .env files refer .env.example in frontend and backend
To access/see database through a prisma UI run:
cd backend/ && npx prisma studio