mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-08 08:22:48 +00:00
12 lines
221 B
Makefile
12 lines
221 B
Makefile
clean:
|
|
rm -rf ./priv/static
|
|
rm -rf _build
|
|
|
|
build-client:
|
|
cd client && npm install && npm run build
|
|
|
|
build-server:
|
|
MIX_ENV=prod mix deps.get && MIX_ENV=prod mix release --env=prod
|
|
|
|
all: clean build-client build-server
|