diff --git a/justfile b/justfile
index 7ae5614..af4b82c 100644
--- a/justfile
+++ b/justfile
@@ -4,6 +4,8 @@ deps:
 sync:
   pip-sync requirements/dev.txt
 
+freshdeps: deps sync
+
 lint: lint-ruff lint-django lint-woodpecker
 
 lint-ruff:
@@ -20,3 +22,5 @@ serve:
 
 test *ARGS:
   ENV_PATH=.env.test python -m pytest {{ARGS}}
+
+alias fd := freshdeps