Skip to content

Commit

Permalink
Create Project Structure.md
Browse files Browse the repository at this point in the history
Signed-off-by: Siri Chandana Macha <[email protected]>
  • Loading branch information
siri-chandana-macha authored Nov 7, 2024
1 parent 727436a commit b362f36
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions Project Structure.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
## Project Structure 📂

```
Bitbox
├── .github
│ ├── ISSUE_TEMPLATE
│ │ ├── bug_report.yml
│ │ ├── custom.md
│ │ └── feature_request.yml
│ ├── workflows
│ │ ├── issue_open_close.yml
│ │ ├── pr-checker.yml
│ │ ├── pr_merge.yaml
│ │ └── pr_raise.yml
│ └── pull_request_template.md
├── assets
│ ├── GSSoC-Ext.png
│ ├── hacktoberfest.png
│ └── image
├── client
│ ├── favicon_io
│ ├── src
│ ├── .env.sample
│ ├── .eslintrc.cjs
│ ├── .gitignore
│ ├── README.md
│ ├── index.html
│ ├── package-lock.json
│ ├── package.json
│ ├── popup.jpg
│ ├── popup.js
│ ├── postcss.config.js
│ ├── projectupload.html
│ ├── tailwind.config.js
│ ├── test.css
│ ├── test.html
│ ├── visi.css
│ ├── visi.js
│ └── vite.config.js
├── server
│ ├── Controllers
│ ├── Models
│ ├── middleware
│ ├── routes
│ ├── .env.sample
│ ├── .gitignore
│ ├── db.js
│ ├── index.js
│ ├── package-lock.json
│ ├── package.json
│ └── sendMail.js
├── .env.txt
├── CONTRIBUTING.md
├── Code_of_Conduct.md
├── LICENSE
├── README.md
└── package-lock.json
```

0 comments on commit b362f36

Please sign in to comment.