1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-11 09:32:51 +00:00

server - added distillery for prod builds

This commit is contained in:
2018-01-22 16:03:12 -06:00
parent 0d3a92c28d
commit 259c270c51
20 changed files with 251 additions and 64 deletions

11
makefile Normal file
View File

@@ -0,0 +1,11 @@
clean:
rm -rf ./priv/static
rm -rf _build
build-client:
cd client && yarn install && yarn run build
build-server:
mix deps.get && MIX_ENV=prod mix release --env=prod
all: clean build-client build-server