-
|
I work on several projects and want separate note collections for each. What is the recommended approach for organizing notes per project? |
Beta Was this translation helpful? Give feedback.
Answered by
adev0x
Feb 27, 2026
Replies: 1 comment
-
|
The recommended approach is to use devlog --dir ~/projects/api/.devlog add "refactored auth middleware"
devlog --dir ~/projects/frontend/.devlog add "fixed hydration bug"You can create shell aliases for each project: alias dl-api="devlog --dir ~/projects/api/.devlog"
alias dl-web="devlog --dir ~/projects/frontend/.devlog"Each directory gets its own |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
adev0x
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The recommended approach is to use
--dirwith separate directories per project:You can create shell aliases for each project:
Each directory gets its own
notes.json, so notes stay fully isolated.