Skip to content

Commit 32e615a

Browse files
committed
chore: restructure justfile
1 parent e5664ea commit 32e615a

2 files changed

Lines changed: 834 additions & 782 deletions

File tree

CONTRIBUTING.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff 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
129129
just dev docker
130+
just dev logs
131+
132+
# Build
133+
just build single frontend
134+
just build single backend
130135

131136
# Tests
132137
just test all
138+
just test backend
133139

134-
# Linting
140+
# Quality checks
135141
just lint frontend
136-
137-
# Formatting
138142
just 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

0 commit comments

Comments
 (0)