mirror of
https://github.com/mgerb/go-discord-bot
synced 2026-01-09 08:32:48 +00:00
17 lines
251 B
Makefile
17 lines
251 B
Makefile
run:
|
|
go run ./main.go
|
|
|
|
install:
|
|
go get ./server && 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
|