File size: 413 Bytes
26997a8 9221b25 26997a8 1e26bb3 26997a8 dbd63c7 f85531c 8bc4d45 66b4685 f85531c 8bc4d45 2260f30 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/bin/bash
git clone "$REPO" .
npm install
npm install cross-blob
npm install node-fetch
npm i --save-dev @types/busboy
npm i --save-dev @types/uuid
npm i --save-dev @types/unidecode
npm ci --production
echo "nameserver 8.8.8.8" > /tmp/resolv.conf
echo "nameserver 1.1.1.1" >> /tmp/resolv.conf
sudo sh -c 'echo -e "nameserver 1.1.1.1\nnameserver 8.8.8.8" > /etc/resolv.conf'
cat /etc/resolv.conf
node index |