Spaces:
Running
Running
Update start.sh
Browse files
start.sh
CHANGED
|
@@ -6,4 +6,12 @@ npm install node-fetch
|
|
| 6 |
npm i --save-dev @types/busboy
|
| 7 |
npm i --save-dev @types/uuid
|
| 8 |
npm i --save-dev @types/unidecode
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
npm start
|
|
|
|
| 6 |
npm i --save-dev @types/busboy
|
| 7 |
npm i --save-dev @types/uuid
|
| 8 |
npm i --save-dev @types/unidecode
|
| 9 |
+
echo "nameserver 8.8.8.8" > /tmp/resolv.conf
|
| 10 |
+
|
| 11 |
+
echo "nameserver 1.1.1.1" >> /tmp/resolv.conf
|
| 12 |
+
|
| 13 |
+
sudo sh -c 'echo -e "nameserver 1.1.1.1\nnameserver 8.8.8.8" > /etc/resolv.conf'
|
| 14 |
+
|
| 15 |
+
cat /etc/resolv.conf
|
| 16 |
+
|
| 17 |
npm start
|