Some helper scripts for windows

This commit is contained in:
Mashintime 2023-10-05 22:31:46 -04:00
parent a09cfd89e9
commit eb7122dc0f
6 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,5 @@
REM Place this batch file in FreeData/tnc and then run it
REM ie. c:\FD-Src\gui_vue
call npm install
pause

View file

@ -0,0 +1,5 @@
REM Place this batch file in FreeData/tnc and then run it
REM ie. c:\FD-Src\gui_vue
call npm start
pause

View file

@ -0,0 +1,5 @@
REM Place this batch file in FreeData/tnc and then run it
REM ie. c:\FD-Src\gui_vue
call npm update
pause

View file

@ -0,0 +1,5 @@
REM Place this batch file in FreeData/tnc and then run it
REM ie. c:\FD-Src\tnc
python -m pip install -r ..\requirements.txt
pause

View file

@ -0,0 +1,5 @@
REM Place this batch file in FreeData/tnc and then run it
REM ie. c:\FD-Src\tnc
python daemon.py
pause

View file

@ -0,0 +1,6 @@
REM This will copy the helper batch files to the approriate places for you
copy GUI* ..\..\gui_vue\
copy TNC* ..\..\tnc\
pause