windows-start.cmd 161 B

123456789
  1. start "Redis" "startRedis.cmd"
  2. start "Mongo" "startMongo.cmd"
  3. cd frontend
  4. start "Frontend" npm run dev
  5. cd ..
  6. SLEEP 20
  7. cd backend
  8. start "Backend" "nodemon"
  9. cd ..