gantt dateFormat YYYY-MM-DD title Adding GANTT diagram to mermaid excludes weekdays 2014-01-10
section A section Completed task :done, des1, 2014-01-06,2014-01-08 Active task :active, des2, 2014-01-09, 3d Future task : des3, after des2, 5d Future task2 : des4, after des2, 5d
gantt
dateFormat YYYY-MM-DD
title Adding GANTT diagram to mermaid
excludes weekdays 2014-01-10
section A section
Completed task :done, des1, 2014-01-06,2014-01-08
Active task :active, des2, 2014-01-09, 3d
Future task : des3, after des2, 5d
Future task2 : des4, after des2, 5d
时序图
1 2 3 4 5 6 7 8 9 10
sequenceDiagram Alice->>Bob: Hello Bob, how are you? alt is sick Bob->>Alice: Not so good :( else is well Bob->>Alice: Feeling fresh like a daisy end opt Extra response Bob->>Alice: Thanks for asking end
sequenceDiagram
Alice->>Bob: Hello Bob, how are you?
alt is sick
Bob->>Alice: Not so good :(
else is well
Bob->>Alice: Feeling fresh like a daisy
end
opt Extra response
Bob->>Alice: Thanks for asking
end
sequenceDiagram
participant A as hue-hr-recruiting
participant B as AWS Lambda(dev)
participant C as AWS Codebuild
participant D as hpm-version
A->>B: webhook
B-->>B: Sync source code to s3 bucket.
B->>+C: Trigger a build
C-->>-B: success
B->>D: Update commit sha of `hue-hr-recruiting` in version.yml
sequenceDiagram
participant A as hpm-version
participant B as AWS Lambda(prod)
participant C as AWS Pipeline
participant D as AWS Codebuild
participant E as Slack
A->>B: webhook: push a new release tag
loop Every projects in version.yml
B->>+B: sync source code to s3 bucket in prod env for current tag.
end
B->>+C: Trigger a build
C->>+E: request approval
E-->>-C: approval
loop Every projects in version.yml
C->>+D: build (buildspec.yml)
D-->>-C: success
end
C-->>-B: success