Files
trailbase/examples/coffeesearch/Makefile
T
2024-11-20 13:23:00 +01:00

10 lines
136 B
Makefile

all: init app
app: dist
pnpm build
init:
mkdir -p traildepot/data; cat import.sql | sqlite3 traildepot/data/main.db -
.PHONY: init