Last active
May 21, 2019 20:29
-
-
Save rgeraldporter/1d825caeedeca576ea4a7264c2e58af2 to your computer and use it in GitHub Desktop.
Weever Deployment System
This file contains hidden or 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
Weever Deployment System | |
QA of Release* | |
complete -> Deploy to Stage | |
issue found -> Create Ticket | |
Deploy to Stage | |
complete -> QA of Stage | |
error -> Notify Dev Ops | |
QA of Stage | |
complete -> Deploy to Prod | |
issue found -> Create Ticket | |
Deploy to Prod | |
complete -> QA of Prod | |
error -> Notify Dev Ops | |
QA of Prod | |
complete -> Deploy to Release | |
issue found -> Create Ticket | |
Deploy to Release | |
complete -> QA of Release | |
error -> Notify Dev Ops | |
Create Ticket | |
is urgent -> Request Hotfix | |
non-urgent release issue -> QA of Release | |
non-urgent stage issue -> QA of Stage | |
non-urgent patch issue -> QA of Patch | |
non-urgent prod issue -> QA of Prod | |
Notify Dev Ops | |
stage error fixed -> Deploy to Stage | |
release error fixed -> Deploy to Release | |
prod error fixed -> Deploy to Prod | |
patch error fixed -> Deploy to Patch | |
Request Hotfix | |
hotfix complete for stage -> Deploy to Stage | |
hotfix complete for release -> Deploy to Release | |
hotfix complete for patch -> Deploy to Patch | |
Deploy to Patch | |
complete -> QA of Patch | |
error -> Notify Dev Ops | |
QA of Patch | |
complete -> Deploy to Stage | |
issue found -> Create Ticket | |
This file contains hidden or 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
function render(model){ | |
let current_state_name = model.active_states[0].name; | |
return $("h1", | |
{style: {color: "darkBlue"}}, | |
`The current state is: ${current_state_name}`); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment