ovpn-admin/install-deps.sh

18 lines
338 B
Bash
Raw Normal View History

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