windows-start.cmd 175 B

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