upend/Makefile

44 lines
978 B
Makefile
Raw Normal View History

all: package
package: target/release/upend ui/dist/index.html
rm -fr dist
2021-06-11 15:07:16 +02:00
linuxdeploy-x86_64.AppImage --appdir dist
cp target/release/upend dist/usr/bin/upend
cp -r ui/dist dist/usr/bin/webui
cp upend.png dist/usr/share/icons/upend.png
VERSION="$$(grep '^version' Cargo.toml|grep -Eo '[0-9]+\.[0-9]+\.[0-9]+')" \
linuxdeploy-x86_64.AppImage --appdir dist -d upend.desktop --output appimage
backend: target/release/upend
target/release/upend:
cargo build --release
2021-11-12 16:34:13 +01:00
tools_upend_js:
cd tools/upend_js && yarn install && yarn build
frontend: ui/dist/index.html
2021-11-12 16:34:13 +01:00
ui/dist/index.html: tools_upend_js
2021-05-08 14:17:54 +02:00
cd ui && yarn install && yarn build
lint: backend_lint frontend_lint
backend_lint:
cargo clippy
2021-11-12 16:34:13 +01:00
frontend_lint:
cd ui && yarn instlal && yarn lint
backend_test:
cargo test --workspace --verbose
clean:
2021-11-12 16:34:13 +01:00
rm -vr target
rm -vr ui/dist
2020-09-07 13:46:43 +02:00
update_schema:
rm -f upend.sqlite3
diesel migration run --migration-dir migrations/upend/
diesel print-schema > src/schema.rs