- Create openode.io new account, new instance
- Go to your local repo in cmd/terminal
npm install openode --g
openode
- Fill in user/password/server info.
openode template --with-services postgresql
- openode set-config MAX_BUILD_DURATION 400
- openode postgresql local reference
- In docker
- For a CLEAN SLATE
openode erase-all; openode deploy
- To add files and reload
openode sync-n-reload
`
DO NOT use openode deploy
!!!
Postgresql will be running and the deploy can corrupt data. Insteaad, use openode stop; openode deploy
or openode sync-n-reload
///////////////////////////
SmartyPants converts ASCII punctuation characters into "smart" typographic punctuation HTML entities. For example:
ASCII | HTML | |
---|---|---|
Single backticks | 'Isn't this fun?' |
'Isn't this fun?' |
Quotes | "Isn't this fun?" |
"Isn't this fun?" |
Dashes | -- is en-dash, --- is em-dash |
-- is en-dash, --- is em-dash |
You can render UML diagrams using Mermaid. For example, this will produce a sequence diagram:
sequenceDiagram
Alice ->> Bob: Hello Bob, how are you?
Bob-->>John: How about you John?
Bob--x Alice: I am good thanks!
Bob-x John: I am good thanks!
Note right of John: Bob thinks a long<br/>long time, so long<br/>that the text does<br/>not fit on a row.
Bob-->Alice: Checking with John...
Alice->John: Yes... John, how are you?
And this will produce a flow chart:
graph LR
A[Square Rect] -- Link text --> B((Circle))
A --> C(Round Rect)
B --> D{Rhombus}
C --> D