You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+50Lines changed: 50 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,3 +30,53 @@ go install
30
30
### First Steps
31
31
32
32
For a comprehensive walkthrough including task management, time tracking, notes, and media tracking, see the [Quickstart Guide](website/docs/Quickstart.md).
33
+
34
+
## Development
35
+
36
+
Noteleaf uses [Task](https://taskfile.dev) for build automation. Development builds include additional tooling commands not available in production builds.
37
+
38
+
### Building
39
+
40
+
```sh
41
+
# Production build
42
+
task build
43
+
44
+
# Development build (with version info and dev tools)
45
+
task build:dev
46
+
47
+
# Run tests
48
+
task test
49
+
task cov # ...with coverage
50
+
```
51
+
52
+
### Development Tools
53
+
54
+
Dev builds (`task build:dev`) include a `tools` subcommand with maintenance utilities:
0 commit comments