1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-11-27 08:31:20 +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:
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:
rm -rf bin

View File

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