1
0
Fork 0
mirror of synced 2025-03-20 03:41:04 -04:00
ovpn-admin/install-deps.sh
2021-10-15 08:05:30 +03:00

17 lines
338 B
Bash
Executable file

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