|
@@ -102,8 +102,10 @@ docker compose -f docker-compose.test.yml run --rm frontend-test
|
|
|
|
|
|
|
|
## Making Changes
|
|
## Making Changes
|
|
|
|
|
|
|
|
-1. **Create a branch** for your changes:
|
|
|
|
|
|
|
+1. **Create a branch** from `dev` for your changes:
|
|
|
```bash
|
|
```bash
|
|
|
|
|
+ git checkout dev
|
|
|
|
|
+ git pull upstream dev
|
|
|
git checkout -b feature/your-feature-name
|
|
git checkout -b feature/your-feature-name
|
|
|
# or
|
|
# or
|
|
|
git checkout -b fix/your-bug-fix
|
|
git checkout -b fix/your-bug-fix
|
|
@@ -316,6 +318,7 @@ All checks must pass before merging. Run `./test_all.sh` locally before pushing
|
|
|
```
|
|
```
|
|
|
|
|
|
|
|
2. **Create a Pull Request** on GitHub:
|
|
2. **Create a Pull Request** on GitHub:
|
|
|
|
|
+ - **Always target the `dev` branch** as the base branch (not `main`)
|
|
|
- Use a clear, descriptive title
|
|
- Use a clear, descriptive title
|
|
|
- Fill out the PR template completely
|
|
- Fill out the PR template completely
|
|
|
- Link any related issues
|
|
- Link any related issues
|