about summary refs log tree commit diff stats
path: root/justfile
diff options
context:
space:
mode:
Diffstat (limited to 'justfile')
-rw-r--r--justfile10
1 files changed, 10 insertions, 0 deletions
diff --git a/justfile b/justfile
index f5c6682..2e99e03 100644
--- a/justfile
+++ b/justfile
@@ -4,6 +4,16 @@ default:
 prepare:
 	nix build .#css -o frontend/static/base.css
 
+update-go-dependencies:
+	go get -u all
+	go mod tidy
+	gomod2nix
+
+update-nix-dependencies:
+	nix flake update
+
+update-dependencies: update-go-dependencies update-nix-dependencies
+
 checkformat:
 	gofmt -d .
 	goimports -d .