ChatGPT-API / start.bat
Amrpyt's picture
Upload 10 files
2ba1dc3 verified
raw
history blame contribute delete
No virus
151 Bytes
@echo off
IF NOT EXIST node_modules (
echo Installing npm packages...
call npm install
)
cls
echo Starting the application...
call npm start