Skip to content

Update repository structure and Mermaid diagram #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 14 additions & 12 deletions MERMAID_DIAGRAM.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,21 @@ graph TD
subgraph graph_git_repo
root[graph-git-repo]
root --> gitignore[.gitignore]
root --> license[LICENSE]
root --> mermaid[MERMAID_DIAGRAM.md]
root --> LICENSE[LICENSE]
root --> MERMAID[MERMAID_DIAGRAM.md]
root --> README[README.md]
root --> repo_structure[REPO_STRUCTURE.md]
root --> base[base.sh]
root --> tree_to_gpt[tree_to_gpt.py]
root --> REPO_STRUCTURE[REPO_STRUCTURE.md]
root --> action[action.yml]
root --> script[base.sh]
root --> tree_script[tree_to_gpt.py]
end
style graph_git_repo fill:#e0f7fa,stroke:#333,stroke-width:2px;
style gitignore fill:#ffccbc,stroke:#333,stroke-width:1px;
style license fill:#ffccbc,stroke:#333,stroke-width:1px;
style mermaid fill:#ffccbc,stroke:#333,stroke-width:1px;
style README fill:#ffccbc,stroke:#333,stroke-width:1px;
style repo_structure fill:#ffccbc,stroke:#333,stroke-width:1px;
style base fill:#ffccbc,stroke:#333,stroke-width:1px;
style tree_to_gpt fill:#ffccbc,stroke:#333,stroke-width:1px;
style gitignore fill:#bbdefb,stroke:#2196f3,stroke-width:1px;
style LICENSE fill:#bbdefb,stroke:#2196f3,stroke-width:1px;
style MERMAID fill:#bbdefb,stroke:#2196f3,stroke-width:1px;
style README fill:#bbdefb,stroke:#2196f3,stroke-width:1px;
style REPO_STRUCTURE fill:#bbdefb,stroke:#2196f3,stroke-width:1px;
style action fill:#bbdefb,stroke:#2196f3,stroke-width:1px;
style script fill:#bbdefb,stroke:#2196f3,stroke-width:1px;
style tree_script fill:#bbdefb,stroke:#2196f3,stroke-width:1px;
```
1 change: 1 addition & 0 deletions REPO_STRUCTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ graph-git-repo
├── MERMAID_DIAGRAM.md
├── README.md
├── REPO_STRUCTURE.md
├── action.yml
├── base.sh
└── tree_to_gpt.py
```