8 lines
74 B
Makefile
8 lines
74 B
Makefile
|
|
.PHONY: install start
|
||
|
|
|
||
|
|
install:
|
||
|
|
bun install
|
||
|
|
|
||
|
|
start: install
|
||
|
|
bun run dev
|