1
0
Fork 0
mirror of synced 2025-05-21 02:29:40 -04:00
ovpn-admin/install-deps.sh

18 lines
338 B
Bash
Raw Normal View History

2021-10-05 18:09:29 +03:00
#!/usr/bin/env bash
2021-10-05 18:09:29 +03:00
apt-get update
apt-get install -y curl
2021-10-15 08:05:30 +03:00
apt-get install -y gcc-multilib libc6 libc6-dev libc6-dev-i386
2021-10-15 08:05:30 +03:00
curl -sL https://deb.nodesource.com/setup_14.x | bash -
apt-get install -y nodejs
2021-10-05 18:09:29 +03:00
PATH=$PATH:~/go/bin
go get -u github.com/gobuffalo/packr/v2/packr2
cd frontend && npm install && npm run build && cd ..
packr2