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