1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-10 09:02:49 +00:00

expanded permissions functionality - added packr for bundling static assets

This commit is contained in:
2018-04-15 15:28:12 -05:00
parent e36b168a23
commit 89b6d89890
9 changed files with 196 additions and 122 deletions

View File

@@ -5,7 +5,7 @@ install:
go get && cd client && npm install
build-server:
go build -o bot ./main.go
packr build -o bot ./main.go && packr install
build-client:
cd client && npm run build
@@ -13,4 +13,4 @@ build-client:
clean:
rm -rf bot ./dist
all: install build-server build-client
all: install build-client build-server