mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-01-12 21:00:25 -06:00
This is only to avoid accidentally leaking any secrets from early development especially in the light of short-sha attacks.
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
|