0
0
Fork 0
mirror of https://git.verdigado.com/NB-Public/simple-wkd.git synced 2024-10-30 01:05:53 +01:00
simple-wkd/build-debian.sh

16 lines
330 B
Bash
Raw Normal View History

2024-10-26 11:12:28 +02:00
#!/bin/sh
apt install -y clang lld musl-dev cargo
cp -R backend/* .
cargo build --release --target-dir ./build
mv ./build/release/simple-wkd simple-wkd-executable
apt install -y npm
cp -R website/* .
npm install -g pnpm && \
pnpm install && \
2024-10-26 13:31:32 +02:00
pnpm astro telemetry disable && \
2024-10-26 11:12:28 +02:00
pnpm run build
mv dist assets/webpage