13 lines
291 B
Makefile
13 lines
291 B
Makefile
.PHONY: start build help
|
|
|
|
start:
|
|
NIXPKGS_ALLOW_INSECURE=1 nix-shell --run "npm start"
|
|
|
|
build:
|
|
NIXPKGS_ALLOW_INSECURE=1 nix-shell --run "npm run build"
|
|
|
|
help:
|
|
@echo "Available commands:"
|
|
@echo " start - Start the development server"
|
|
@echo " build - Build the project for production"
|