Created
May 11, 2019 09:04
-
-
Save rakibulhaq/02d737bb04e4b059c4314b60fe15527c to your computer and use it in GitHub Desktop.
Simple batch Script to Run from Command To Execute Different Services
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo 'starting mongo db service' | |
start mongod | |
cd /d F:\1.Projects\templates\rest-api-server | |
@echo 'starting rest api server at port: 3100' | |
start npm run dev | |
cd /d F:\1.Projects\tempaltes\pwa\mealmanager-pwa | |
@echo 'starting meal manager pwa' | |
start npm run serve |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment