Skip to content

Instantly share code, notes, and snippets.

@rgeraldporter
Last active May 21, 2019 20:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rgeraldporter/1d825caeedeca576ea4a7264c2e58af2 to your computer and use it in GitHub Desktop.
Save rgeraldporter/1d825caeedeca576ea4a7264c2e58af2 to your computer and use it in GitHub Desktop.
Weever Deployment System
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
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