This repository is a container using Git Submodules for managing multiple services.
When you need to modify code in a sub-folder (e.g., api/), treat that folder as its own independent Git repository.
-
Change your working directory to the specific sub-repo:
cd api -
Create a new branch:
git checkout -b feature-branch -
Make your changes.
-
Commit:
git commit -m "Your message" -
Push to origin:
git push origin feature-branch -
Open the PR against the sub-repo's main branch.
Important: Do NOT open PRs on this parent repository.