-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add documentation files for object design, system design, and require…
…ments analysis
- Loading branch information
1 parent
f0362a3
commit 2db4126
Showing
22 changed files
with
211 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,95 @@ | ||
@startuml Hephaestus | ||
!theme plain | ||
skinparam style strictuml | ||
skinparam SequenceMessageAlignment center | ||
|
||
"Novice Developer" -> Hephaestus: Mentor me | ||
"Novice Developer" <- Hephaestus: Yes | ||
@enduml | ||
@startuml | ||
|Novice Developer| | ||
start | ||
|
||
:Ideate and Plan; | ||
:Create Issue; | ||
|
||
|Hephaestus| | ||
:Review Issue; | ||
while (Is the issue well-defined?) is (no) | ||
:Provide Feedback on Issue; | ||
|Novice Developer| | ||
:Revise Issue; | ||
endwhile (yes) | ||
|Hephaestus| | ||
:Approve Issue; | ||
|
||
|Novice Developer| | ||
:Start Working on Issue; | ||
:Create Branch; | ||
|
||
|Hephaestus| | ||
:Monitor Development; | ||
:Pair Programming Session; | ||
fork | ||
|Novice Developer| | ||
:Implement Feature; | ||
:Write Unit Tests; | ||
:Commit Changes; | ||
:Push Branch; | ||
fork again | ||
|Hephaestus| | ||
:Provide Proactive Feedback; | ||
:Guidance on Best Practices; | ||
end fork | ||
|
||
|CI/CD Pipeline| | ||
:Run Automated Tests; | ||
if (Tests Pass?) then (no) | ||
repeat | ||
|Hephaestus| | ||
:Review Failed Tests; | ||
:Provide Feedback on Code; | ||
|Novice Developer| | ||
:Fix Issues; | ||
:Push Branch; | ||
|CI/CD Pipeline| | ||
:Run Automated Tests; | ||
repeat while (Tests Pass?) is (no) | ||
else (yes) | ||
endif | ||
|
||
|Hephaestus| | ||
:Review Code; | ||
if (Is the code up to standards?) then (yes) | ||
:Approve Pull Request; | ||
else (no) | ||
:Provide Feedback on Code; | ||
endif | ||
|
||
|Novice Developer| | ||
:Merge Pull Request; | ||
|
||
|
||
|CI/CD Pipeline| | ||
:Deploy to Staging; | ||
|
||
|Novice Developer| | ||
:Perform User Acceptance Testing; | ||
|
||
|Hephaestus| | ||
:Monitor UAT Feedback; | ||
if (Feedback is Positive?) then (yes) | ||
:Deploy to Production; | ||
else (no) | ||
:Provide Feedback on UAT; | ||
|Novice Developer| | ||
:Revise Code; | ||
|CI/CD Pipeline| | ||
:Deploy to Staging; | ||
endif | ||
|
||
|Novice Developer| | ||
:Monitor Production; | ||
:Gather Metrics; | ||
|
||
|Hephaestus| | ||
:Review Metrics; | ||
:Provide Continuous Feedback; | ||
|
||
|Novice Developer| | ||
:Continuous Improvement; | ||
|
||
stop | ||
@enduml |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.