changes
All checks were successful
CI / ci (push) Successful in 19m38s

This commit is contained in:
2026-08-26 20:55:30 +02:00
parent a557c183e9
commit 23d052278a
523 changed files with 24448 additions and 2005 deletions

View File

@@ -1,25 +1,51 @@
.PHONY: build dev check check-all test fmt run clean fix spa
.PHONY: build dev dev-server dev-worker check check-all test fmt run run-server run-worker clean fix spa
SERVER := k-mood
WORKER := k-mood-worker
build: spa
cargo build --release
dev:
RUST_LOG=debug cargo run
spa:
cd spa && bun install && bun run build
# Runs the server with the worker beside it, which is how k-mood is meant to run:
# reminders, session cleanup and enrichment all live in the worker. Stopping the
# server stops both.
run: build
@./target/release/$(WORKER) & \
WORKER_PID=$$!; \
trap "kill $$WORKER_PID 2>/dev/null || true" EXIT INT TERM; \
./target/release/$(SERVER)
run-server: build
./target/release/$(SERVER)
run-worker: build
./target/release/$(WORKER)
dev:
@cargo build --bin $(SERVER) --bin $(WORKER)
@RUST_LOG=debug ./target/debug/$(WORKER) & \
WORKER_PID=$$!; \
trap "kill $$WORKER_PID 2>/dev/null || true" EXIT INT TERM; \
RUST_LOG=debug ./target/debug/$(SERVER)
dev-server:
RUST_LOG=debug cargo run --bin $(SERVER)
dev-worker:
RUST_LOG=debug cargo run --bin $(WORKER)
# Lints tests and benches as well as the crates themselves: a warning in test
# code is still a warning, and half the codebase is tests.
check:
cargo fmt --all -- --check
cargo clippy -- -D warnings
cargo test
cd spa && bun run check && bun run typecheck
check-all:
cargo fmt --all -- --check
cargo clippy --workspace -- -D warnings
cargo clippy --workspace --all-targets -- -D warnings
cargo test --workspace
cd spa && bun run check && bun run typecheck
cd spa && bun run check && bun run lint && bun run typecheck
check-all: check
test:
cargo test --workspace
@@ -28,12 +54,9 @@ fmt:
cargo fmt --all
cd spa && bun run format
run: spa
cargo run --release
fix:
cargo fmt --all
cargo clippy --fix --allow-dirty --allow-staged
cargo clippy --fix --workspace --all-targets --allow-dirty --allow-staged
clean:
cargo clean