Skip to content

Instantly share code, notes, and snippets.

@kevinslin
Created December 5, 2021 17:34
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kevinslin/0e0f13fedb43732e86938ab1033b7efd to your computer and use it in GitHub Desktop.
Save kevinslin/0e0f13fedb43732e86938ab1033b7efd to your computer and use it in GitHub Desktop.
mutli-workspace-setup

Creating a Personal and Work specific workspace

  1. Create a personal workspace using Initialize Workspace
    • initialize with a blank vault
      • if you want to version control the vault, run Vault Convert to add a git repository to this vault
    • repeat this process with other vaults as needed (we recommend just starting off with a single vault), see reasons for going multi-vault here
    • add your workspace to version control by running the following:
      1. Initialize a git repo
        git init
        git add .
        git commit -m "initial commit"
        
      2. Add a remote
    • your done. if you need to setup your personal workspace on another computer, clone the workspace repo. dendron will look at your dendron.yml file and automatically pull any missing vaults
  2. Create a work workspace by running Initialize Workspace again
    • repeat the above steps
    • to share your work workspace, share the git repo where the workspace is located
  3. Add your work vaults to your personal vault
    • when inside your personal workspace, run Vault Add
    • choose remote and put the git endpoint of your remote workspace
    • Dendron will pull down your work workspace
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment