mirror of
https://github.com/zama-ai/tfhe-rs.git
synced 2026-01-07 22:04:10 -05:00
16 lines
271 B
Makefile
16 lines
271 B
Makefile
.PHONY: run_server # Build and run Node server
|
|
run_server:
|
|
npm install
|
|
npm run build
|
|
npm run server
|
|
|
|
.PHONY: fmt # Format Javascript code
|
|
fmt:
|
|
npm install
|
|
npm run format
|
|
|
|
.PHONY: check_fmt # Check Javascript code format
|
|
check_fmt:
|
|
npm install
|
|
npm run check-format
|