xai / start.sh
newservers's picture
Create start.sh
10f850d verified
Raw
History Blame Contribute Delete
183 Bytes
#!/bin/bash
if [ -n "$REPO_URL" ]; then
rm -rf /app/*
git clone $REPO_URL /app
fi
cd /app
npm install express axios
node server.js