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

added docker support

This commit is contained in:
2018-05-30 21:23:03 -05:00
parent af8448e028
commit 3d05a49a3e
20 changed files with 125 additions and 196 deletions

View File

@@ -2,10 +2,10 @@ run:
go run ./main.go
install:
go get && cd client && npm install
go get ./server && cd client && npm install
build-server:
packr build -o bot ./main.go && packr install
cd ./server && packr build -o ../bot ./main.go
build-client:
cd client && npm run build