ChatGPT-API / start.sh
Amrpyt's picture
Upload 10 files
2ba1dc3 verified
raw
history blame contribute delete
No virus
153 Bytes
#!/bin/sh
if [ ! -d "node_modules" ]; then
echo "Installing npm packages..."
npm install
fi
clear
echo "Starting the application..."
npm start