File size: 151 Bytes
cd8910e
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
#!/bin/bash
if [ ! -d "./.git" ]; then
  git clone https://github.com/synshin9/Restfull-Api.git .
else
  git pull origin main
fi

npm install
npm start