From f1998c321a4eec6d75b58d84aa8610971bf21979 Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Sat, 31 Jul 2021 11:35:39 -0600 Subject: move static files into static sub-dir, refactor nix a bit --- static/Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 static/Makefile (limited to 'static/Makefile') diff --git a/static/Makefile b/static/Makefile new file mode 100644 index 0000000..5839aa5 --- /dev/null +++ b/static/Makefile @@ -0,0 +1,18 @@ +result: + nix-build -A build + +clean: + rm -f result + rm -rf _site + +dev: + nix-shell -A dev + +shell: + nix-shell -A shell + +lock: + nix-shell -A depShell --run 'bundler lock; bundix; rm -rf .bundle vendor' + +update: + nix-shell -A depShell --run 'bundler update; bundler lock; bundix; rm -rf .bundle vendor' -- cgit v1.2.3