mirror of
https://github.com/PawanOsman/ChatGPT.git
synced 2026-07-18 08:05:57 +02:00
11 lines
155 B
Bash
11 lines
155 B
Bash
#!/bin/bash
|
|
|
|
if [ ! -d "node_modules" ]; then
|
|
echo "Installing npm packages..."
|
|
npm install
|
|
fi
|
|
|
|
clear
|
|
echo "Starting the application..."
|
|
npm start
|