v / start.sh
NexusV1's picture
Update start.sh
4d4289d verified
Raw
History Blame Contribute Delete
147 Bytes
#!/bin/bash
# Clone repo if not already cloned
if [ ! -d "/app/.git" ]; then
git clone "$REPO_URL" /app
fi
cd /app
npm install
node server.js