initial commit
All checks were successful
Generate a build and push to Cloudflare Pages / Build and Deploy to Cloudflare Pages (push) Successful in 1m24s

This commit is contained in:
2026-03-25 18:53:21 -04:00
parent 2d19da4ef5
commit d21806dfd1
532 changed files with 11274 additions and 72849 deletions

24
shell.nix Normal file
View File

@@ -0,0 +1,24 @@
{ pkgs ? import <nixpkgs> { config.allowUnfree = true; } }:
pkgs.mkShell {
buildInputs = with pkgs; [
# Node.js ecosystem
nodejs_24
nodePackages.pnpm
claude-code
];
shellHook = ''
echo "Node.js development environment"
echo "Node version: $(node --version)"
echo "PNPM version: $(pnpm --version)"
export PATH="$PWD/node_modules/.bin:$PATH"
# Install dependencies if package.json exists
if [ -f "package.json" ] && [ ! -d "node_modules" ]; then
echo "Installing npm dependencies..."
pnpm install
fi
'';
}