1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-09 16:42:48 +00:00
Files
go-discord-bot/makefile

17 lines
223 B
Makefile

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