Skip to content

Instantly share code, notes, and snippets.

@ichux
Last active April 21, 2024 10:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ichux/85e5c760f052304321c4ede839468dd5 to your computer and use it in GitHub Desktop.
Save ichux/85e5c760f052304321c4ede839468dd5 to your computer and use it in GitHub Desktop.
# https://fontawesome.com/v4/icons/
docker pull minlag/mermaid-cli
# Output file must end with ".md"/".markdown", ".svg", ".png" or ".pdf"
docker run --rm -u `id -u`:`id -g` -v ./onpie:/data minlag/mermaid-cli -i input.mmd
docker run --rm -u `id -u`:`id -g` -v ./onpie:/data minlag/mermaid-cli mmdc -i input.mmd -o output.png
flowchart TD
A[OneR8] -->|Call APIs| B(Analysis)
B --> C{DB Sources}
C -->|SQL| D[fa:fa-database Supported]
C -->|NoSQL| E[fa:fa-table Supported]
C -->|Flat files| F[fa:fa-info Supported]
graph LR;
A[OneR8] --> C[Output]
C --> D[PDF]
C --> E[CSV]
C --> F[Image]
A --> G[Users & Privileges]
A --> H[Alerts]
H --> I[Email]
H --> J[Slack]
H --> K[Telegram]
A --> L[Zoom in/out on results]
A --> M[SQL Editor]
A --> N[Web Based Insights and Analytics]
A --> R[Multiple Data Sources]
R --> Y{Databases}
Y --> P[Structured Data]
Y --> Q[Unstructured Data]
R --> Z[Flat file]
A --> S[40+ Charts]
S --> T["Limited only by your imagination"]
A --> U[Advanced & granular search]
A --> W[Multiple Dashboards & Users]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment