hostme/spare
0
1 2#!/bin/bash3if [ -n "$REPO_URL" ]; then4 rm -rf /app/*5 git clone $REPO_URL /app6 fi7 cd /app8 npm install9 node app.js10 1 2#!/bin/bash3if [ -n "$REPO_URL" ]; then4 rm -rf /app/*5 git clone $REPO_URL /app6 fi7 cd /app8 npm install9 node app.js10