mirror of
https://github.com/PawanOsman/ChatGPT.git
synced 2026-06-02 06:14:25 +02:00
11 lines
161 B
Batchfile
11 lines
161 B
Batchfile
@echo off
|
|
|
|
IF NOT EXIST node_modules (
|
|
echo Installing npm packages...
|
|
call npm install
|
|
)
|
|
|
|
cls
|
|
echo Starting the application...
|
|
call npm start
|