mirror of
https://github.com/Xevion/banner.git
synced 2025-12-09 12:06:32 -06:00
21 lines
355 B
Makefile
21 lines
355 B
Makefile
frontend:
|
|
pnpm run -C web dev
|
|
|
|
backend:
|
|
cargo run --bin banner
|
|
|
|
build-frontend:
|
|
pnpm run -C web build
|
|
|
|
build-backend:
|
|
cargo build --release --bin banner
|
|
|
|
build: build-frontend build-backend
|
|
|
|
# Production build that embeds assets
|
|
build-prod:
|
|
pnpm run -C web build
|
|
cargo build --release --bin banner
|
|
|
|
[parallel]
|
|
dev: frontend backend |