mirror of
https://github.com/PawanOsman/ChatGPT.git
synced 2026-06-01 22:08:54 +02:00
11 lines
153 B
Bash
11 lines
153 B
Bash
#!/bin/sh
|
|
|
|
if [ ! -d "node_modules" ]; then
|
|
echo "Installing npm packages..."
|
|
npm install
|
|
fi
|
|
|
|
clear
|
|
echo "Starting the application..."
|
|
npm start
|