Merge branch 'master' into 'master'

Added start files

See merge request cncanon/sg-proxy!3
This commit is contained in:
CncAnon 2023-08-30 07:22:24 +00:00
commit 52fe62d520
2 changed files with 12 additions and 0 deletions

3
start.bat Normal file
View File

@ -0,0 +1,3 @@
call npm install
node main.js
pause

9
start.sh Normal file
View File

@ -0,0 +1,9 @@
#!/bin/bash
npm install
while true;
do
node main.js
echo sleep 5;
sleep 5;
done