windows-start.cmd 162 B

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