21 lines
485 B
Plaintext
21 lines
485 B
Plaintext
echo "Installing the MySQL Driver"
|
|
go get -u github.com/go-sql-driver/mysql
|
|
echo "Installing the PostgreSQL Driver"
|
|
go get -u github.com/lib/pq
|
|
echo "Installing bcrypt"
|
|
go get -u golang.org/x/crypto/bcrypt
|
|
echo "Installing gopsutil"
|
|
go get -u github.com/Azareal/gopsutil
|
|
echo "Installing Gorilla WebSockets"
|
|
go get -u github.com/gorilla/websocket
|
|
|
|
echo "Building the installer"
|
|
cd ./install
|
|
go generate
|
|
go build -o Install
|
|
mv ./Install ..
|
|
cd ..
|
|
|
|
echo "Running the installer"
|
|
./Install
|