Browse Source

update some readme

enzo 1 week ago
parent
commit
16d5f30245
5 changed files with 54 additions and 6 deletions
  1. 3 6
      README.md
  2. 12 0
      startTCP.bat
  3. 14 0
      startall.bat
  4. 12 0
      startgrpc.bat
  5. 13 0
      terminate.bat

+ 3 - 6
README.md

@@ -29,19 +29,16 @@
 
 ```bash
 $ npm install
+$ git submodule update --init --recursive
 ```
 
 ## Compile and run the project
 
 ```bash
 # 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

+ 12 - 0
startTCP.bat

@@ -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 
+

+ 14 - 0
startall.bat

@@ -0,0 +1,14 @@
+
+@echo off
+
+cd "E:\Task\nest-micro"
+
+echo Building all Nest...
+call nest build
+
+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"
+
+
+//wt -p "Command Prompt" ; split-pane -p "Windows PowerShell" ; split-pane -H 
+

+ 12 - 0
startgrpc.bat

@@ -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 grpc"
+
+
+//wt -p "Command Prompt" ; split-pane -p "Windows PowerShell" ; split-pane -H 
+

+ 13 - 0
terminate.bat

@@ -0,0 +1,13 @@
+@echo off
+
+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
+
+
+
+