Files
trailbase/examples/tutorial/scripts/Makefile
Sebastian Jeltsch bdb3735840 Squash all commits for a fresh start.
This is only to avoid accidentally leaking any secrets from early development especially in the light of short-sha attacks.
2024-10-30 23:38:56 +01:00

13 lines
233 B
Makefile

default: types/movie.ts
types/movie.ts: schema/movie.json
pnpm quicktype -s schema $< -o $@
schema/movie.json:
cargo run -- --data-dir=../traildepot schema movies --mode insert > $@
clean:
rm -f types/* schema/*
.PHONY: clean