update documents

This commit is contained in:
2026-03-13 00:09:32 +07:00
commit 9e26846191
6 changed files with 370 additions and 0 deletions

25
DEV_WORKFLOW.md Normal file
View File

@@ -0,0 +1,25 @@
# Developer Workflow
Workflow tiêu chuẩn:
Issue → Branch → Code → Commit → Push → Pull Request → Review → Merge
## Clone repo
git clone http://gitea.company.com/project/chat-system.git
cd chat-system
## Pull code
git checkout main
git pull origin main
## Tạo branch
git checkout -b feature/new-feature
## Commit
git add .
git commit -m "feat(module): add new feature"
## Push
git push origin feature/new-feature
## Tạo Pull Request trên Gitea và chờ review.