Skip to content

Commit

Permalink
Create Project Structure.md
Browse files Browse the repository at this point in the history
  • Loading branch information
siri-chandana-macha authored Nov 5, 2024
1 parent 76408b4 commit 4cb568d
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions Project Structure.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
## Project Structure 📁
```
DATAVERSE
└──.github
│ ├── ISSUE_TEMPLATE
│ │ │ ├── bug_report.md
│ │ │ └── feature_request.md
│ ├── PULL_REQUEST_TEMPLATE.md
│ └── workflows
│ │ ├── auto-label.yml
│ │ ├── greetings.yml
│ │ ├── issue-reminder.yml
│ │ ├── issue_open_close.yml
│ │ ├── pr_merge.yaml
│ │ └── pr_raise.yml
└──.vscode
│ │
│ └── settings.json
└──software
│ ├── database.sql
│ ├── financeTracker.py
│ ├── finance_tracker.ipynb
│ ├── images
│ ├── main.py
│ ├── report.py
│ └── __pycache__
└──website
│ ├── codeOfconduct.html
│ ├── codeOfconduct.js
│ ├── contributor.css
│ ├── contributor.html
│ ├── contributor.js
│ ├── license.html
│ ├── license.js
│ ├── login.html
│ ├── script.js
│ ├── signup.html
│ ├── style.css
│ └── web_images
├──Contributing.md
├──LICENSE
├──README.md
├──code_of_conduct.md
└── index.html
```

0 comments on commit 4cb568d

Please sign in to comment.