ovpn-admin/install-deps.sh

14 lines
198 B
Bash
Raw Normal View History

2021-10-05 11:09:29 -04:00
#!/usr/bin/env bash
apt-get update
apt-get install -y npm nodejs
PATH=$PATH:~/go/bin
go get -u github.com/gobuffalo/packr/v2/packr2
cd frontend && npm install && npm run build && cd ..
packr2