Skip to content

0. Development Guiding Principles

Jason X edited this page Sep 4, 2021 · 1 revision

Overview

  • Progress is organized into weeklong "sprints"
  • During each sprint, tasks are assigned/created on ClickUp
  • Devs can work on tasks by creating a branch on their local repository
  • Please test your code :)
  • Create pull request once you think work is done
  • Before your work is merged to main, perform code review with peer
  • Once code review is complete, merge branch to main, close task

Visualization

   main
    | Start Here (main branch)
    |
    | New sprint assigned/created on ClickUp
    |
    * Create a separate branch in the local repository
    |\
    | \
    |  \
    |   \
    | my-new-branch
    |    |
    |    |- Make edits/commits on the local repository
    |    |
    |    |- Be sure to test your code
    |    |
    |    |- Initiate a pull request to the main branch
    |   /
    |  /
    | /
    * Merge new branch with main after completing code review
    |
    |- Close task on ClickUp
    |

Clone this wiki locally