1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-09-16 08:56:19 +02:00

go get dependencies in make prebuild (refactor later)

Update readme
This commit is contained in:
Chen-I Lim
2020-10-09 10:25:05 -07:00
parent 30449fb1f3
commit 1dca9af576
2 changed files with 6 additions and 1 deletions

View File

@@ -26,6 +26,11 @@ watch:
prebuild: prebuild:
npm install npm install
go get github.com/gorilla/mux
go get github.com/gorilla/websocket
go get github.com/spf13/viper
go get github.com/lib/pq
go get github.com/mattn/go-sqlite3
clean: clean:
rm -rf bin rm -rf bin

View File

@@ -3,7 +3,7 @@
## Build instructions ## Build instructions
``` ```
npm i make prebuild
make make
``` ```