File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -122,20 +122,29 @@ Press `Ctrl/Cmd+Shift+B` to run the default build task (Start Environment).
122122
123123### Justfile Shortcuts
124124
125- We provide a ` Justfile ` for common workflows. Run ` just --list ` to see everything .
125+ We provide a categorized ` Justfile ` for common workflows. Run ` just --list ` to see every category and target .
126126
127127``` bash
128- # Dev environment
128+ # Development
129129just dev docker
130+ just dev logs
131+
132+ # Build
133+ just build single frontend
134+ just build single backend
130135
131136# Tests
132137just test all
138+ just test backend
133139
134- # Linting
140+ # Quality checks
135141just lint frontend
136-
137- # Formatting
138142just format frontend
143+ just format all --check
144+
145+ # Dependencies and Go modules
146+ just deps install all
147+ just gomod tidy all
139148```
140149
141150### Environment Management
You can’t perform that action at this time.
0 commit comments