mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-04-28 12:30:46 -05:00
10 lines
136 B
Makefile
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
|