mirror of
https://github.com/mgerb/go-discord-bot
synced 2026-01-12 01:52:49 +00:00
17 lines
221 B
Makefile
17 lines
221 B
Makefile
run:
|
|
go run ./main.go
|
|
|
|
install:
|
|
go get && cd client && npm install
|
|
|
|
build-server:
|
|
go build -o bot ./main.go
|
|
|
|
build-client:
|
|
cd client && npm run build
|
|
|
|
clean:
|
|
rm -rf bot ./dist
|
|
|
|
all: install build-server build-client
|