1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-10 09:02:49 +00:00
Files
go-discord-bot/makefile
2018-10-14 15:12:35 -05:00

15 lines
243 B
Makefile

install:
cd server && dep ensure && go get
cd client && npm install
build-server:
cd ./server && packr build -o ../bot ./main.go
build-client:
cd client && npm run build
clean:
rm -rf bot ./dist
all: install build-client build-server