How is it supposed to create a workspace using the...
# questions
p
How is it supposed to create a workspace using the CLI? (I mean, how to initialize an empty directory as a Dendron workspace?). I tried
Copy code
mkdir workspaceC
npx @dendronhq/dendron-cli workspace init --wsRoot workspaceC/
but got the following error:
Copy code
Error: ENOENT: no such file or directory, open 'workspaceC/dendron.yml'
    at Object.openSync (node:fs:585:3)
    at Object.readFileSync (node:fs:453:35)
...
  errno: -2,
  syscall: 'open',
  code: 'ENOENT',
  path: 'workspaceC/dendron.yml'
I also tried using the absolute path but nothing changed.