bitque/jirs-client/scripts/prod.sh

31 lines
850 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2021-01-07 09:13:13 +01:00
export PROJECT_ROOT=$(git rev-parse --show-toplevel)
export CLIENT_ROOT=${PROJECT_ROOT}/jirs-client
export HI_ROOT=${PROJECT_ROOT}/highlight/jirs-highlight
export MODE=force
export BUILD_TYPE=--release
cd ${PROJECT_ROOT}
cargo build --bin jirs-css
. .env
2020-05-19 20:54:46 +02:00
rm -Rf build
mkdir build
2020-11-25 20:14:52 +01:00
cd $CLIENT_ROOT
wasm-pack build --mode normal --release --out-name jirs --out-dir $CLIENT_ROOT/build --target web
cd $HI_ROOT
wasm-pack build --mode normal --release --out-name hi --out-dir $CLIENT_ROOT/build --target web
2021-01-07 09:13:13 +01:00
${PROJECT_ROOT}/target/debug/jirs-css -i ./js/styles.css -o ./build/styles.css
2020-05-19 20:54:46 +02:00
cp -r ./static/* ./build
cat ./static/index.js \
| sed -e "s/process.env.JIRS_SERVER_BIND/'$JIRS_SERVER_BIND'/g" \
2020-05-19 20:54:46 +02:00
| sed -e "s/process.env.JIRS_SERVER_PORT/'$JIRS_SERVER_PORT'/g" &> ./build/index.js
2020-05-19 20:54:46 +02:00
cp ./js/template.html ./build/index.html