Update 2 files

- /start.bat
- /start.sh
This commit is contained in:
totallynotcrazy 2023-08-29 21:09:07 +00:00
parent ab46422cb1
commit 833fa12d2c
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