@@ -29,19 +29,16 @@
```bash
$ npm install
+$ git submodule update --init --recursive
```
## Compile and run the project
# development
-$ npm run start
+nest start {appName}
-# watch mode
-$ npm run start:dev
-
-# production mode
-$ npm run start:prod
+batfile to start all coming soon...
## Run tests
@@ -0,0 +1,12 @@
+
+@echo off
+echo Building grpc...
+call nest build
+echo Starting Service ApiGateWay && MessageGRPC
+start wt -M -d "E:\Task\nest-micro" cmd /k "nest start apigateway" ; split-pane -d "E:\Task\nest-micro" cmd /k "nest start tcp"
+//wt -p "Command Prompt" ; split-pane -p "Windows PowerShell" ; split-pane -H
@@ -0,0 +1,14 @@
+cd "E:\Task\nest-micro"
+echo Building all Nest...
+echo Starting services...
+start wt -M -d "E:\Task\nest-micro" cmd /k "nest start apigateway" ; split-pane -d "E:\Task\nest-micro" cmd /k "nest start grpc" ; split-pane -d "E:\Task\nest-micro" cmd /k "nest start tcp"
+start wt -M -d "E:\Task\nest-micro" cmd /k "nest start apigateway" ; split-pane -d "E:\Task\nest-micro" cmd /k "nest start grpc"
@@ -0,0 +1,13 @@
+REM Kill all node.exe processes except for the one associated with your build script
+for /f "tokens=2" %%a in ('tasklist ^| findstr /i /c:"node.exe" /c:"BUILD_PROCESS=yes"') do (
+ taskkill /F /PID %%a
+)
+REM Close the terminal window (Windows Terminal)
+taskkill /F /IM WindowsTerminal.exe