upend/Makefile

44 lines
1.0 KiB
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
2021-12-02 22:37:51 +01:00
cp -r ui/public dist/usr/bin/webui
2021-06-11 15:07:16 +02:00
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
tools/upend_js/index.js:
2021-11-12 16:34:13 +01:00
cd tools/upend_js && yarn install && yarn build
frontend: ui/dist/index.html
ui/dist/index.html: tools/upend_js/index.js
2021-12-02 22:25:25 +01:00
cd ui && yarn add ../tools/upend_js && 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