mirror of
https://github.com/trailbaseio/trailbase
synced 2026-04-25 23:37:40 +00:00
13 lines
233 B
Makefile
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
|