windows-start.cmd 174 B

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