mirror of
https://github.com/flant/ovpn-admin.git
synced 2024-12-12 08:44:07 +02:00
14 lines
198 B
Bash
Executable File
14 lines
198 B
Bash
Executable File
#!/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
|
|
|