2
0

update readme with nix setup and disclaimer, increase scale max to 10

This commit is contained in:
2025-09-22 15:35:04 +02:00
parent a0212a3355
commit 050273e51d
10 changed files with 1268 additions and 5 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
.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"