mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-09 08:42:47 +00:00
12 lines
210 B
Makefile
12 lines
210 B
Makefile
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
|