.PHONY: prepare build run clean

prepare:
	cargo sqlx prepare

build: prepare
	cargo build

run: build
	cargo run

clean:
	rm -dfR target
