-
|
I want to store my devlog notes in a custom directory instead of ~/.devlog. Is there a way to configure this permanently without passing --dir every time? |
Beta Was this translation helpful? Give feedback.
Answered by
adev0x
Feb 27, 2026
Replies: 1 comment
-
|
You can set the export DEVLOG_DIR="/path/to/your/notes"Alternatively, create an alias: alias devlog="devlog --dir ~/my-notes"A dedicated config file is on the roadmap for v0.5. |
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
You can set the
DEVLOG_DIRenvironment variable or use the--dirflag. For a permanent config, add this to your shell profile:Alternatively, create an alias:
A dedicated config file is on the roadmap for v0.5.