Run the docs locally to get started:
mkdocs serve -a 127.0.0.1:8001 --livereloadThen open http://127.0.0.1:8001 for setup instructions and API usage.
Before writing any code, make sure you are branching off the correct base branch.
git remote -vThis shows what remote repositories you are pointing to. If you do not see the Elevate GitHub repository listed, add it as a remote named elevate:
git remote add elevate https://github.com/<org>/<repo>.gitReplace <org>/<repo> with the actual repository path. Then verify it was added:
git remote -vgit fetch --allThis updates your local knowledge of all remote branches without changing your working directory.
git branch -rLook for the latest release branch (e.g. origin/release-1.0.0) or whatever branch the team is currently working from. Confirm with your team if unsure.
It is better to branch off the upstream remote (e.g. elevate) rather than origin, so your base is always the canonical source of truth. Check git remote -v to confirm which remote name points to the upstream repo.
git checkout -b your-feature-branch elevate/release-1.0.0If your upstream remote is named differently (e.g. origin), replace elevate with that name:
git checkout -b your-feature-branch origin/release-1.0.0Replace release-1.0.0 with the actual latest branch name if it differs. Confirm with your team which branch is currently active.
Note: After raising a PR to elevate, make sure to do a CodeRabbit review.