Files
kgpz_web/build.sh
2024-12-04 18:58:02 +01:00

14 lines
265 B
Bash
Executable File

#!/bin/bash
rm -rf ./bin
npm --prefix ./views install
npm --prefix ./views run build -- --config vite.config.js
mkdir -p ./bin
go build -o ./bin/kgpz .
if [ -f ./config.json ]; then
cp ./config.json bin/config.json
else
cp ./config.dev.json ./bin/config.json
fi