stateDiagram-v2
state "wake up" as wakeUp
state "make ☕" as make
state "drink ☕" as drink
state outOfCoffee <<choice>>
[*] --> wakeUp
wakeUp --> check
check --> outOfCoffee: out of coffee?
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
| #!/usr/bin/env node | |
| /* eslint-disable no-console */ | |
| /** | |
| * Copyright (c) HashiCorp, Inc. | |
| * SPDX-License-Identifier: MPL-2.0 | |
| */ | |
| // [2023-09-04] Edited to work with the appdir by @raphaelbadia: | |
| // https://gist.github.com/raphaelbadia/1fbc948928378a4ce0e1ce90923263ae |
OlderNewer