ayb 0.1.11

ayb makes it easy to create, host, and share embedded databases like SQLite and DuckDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.PHONY: lint server test copyconfig

lint:
	cargo fmt
	cargo clippy -- -D warnings

server:
	RUST_BACKTRACE=1 RUST_LOG=debug cargo run -- server

test:
ifdef TEST
	RUST_BACKTRACE=1 cargo test $(TEST) --verbose -- --nocapture
else
	RUST_BACKTRACE=1 cargo test --verbose -- --nocapture
endif

copyconfig:
	cp ../main-checkout/ayb.toml .