Quickstart

This guide will go over setting up the workspace for a team of engineers.

Steps when using Github

  1. Go to eng-workspace-starter and click use this template to create your own copy of the repo.
  2. Share the repo with team members and make sure they have permission to read/write to this repository

Steps when using another git provider

  1. Clone eng-workspace-starter locally
    git clone https://github.com/dendronhq/eng-workspace-starter.git
    
  2. Remove the existing origin and add your own
    git remote remove orgiin
    git remote add origin {YOUR_ORIGIN}
    git branch -M main
    git push -u origin main
    
  3. Share the repo with team members and make sure they have permission to read/write to this repository

Backlinks