File tree 1 file changed +63
-0
lines changed
1 file changed +63
-0
lines changed Original file line number Diff line number Diff line change
1
+ ## Project Structure 📂
2
+
3
+ ```
4
+ Bitbox
5
+ │
6
+ ├── .github
7
+ │ ├── ISSUE_TEMPLATE
8
+ │ │ ├── bug_report.yml
9
+ │ │ ├── custom.md
10
+ │ │ └── feature_request.yml
11
+ │ ├── workflows
12
+ │ │ ├── issue_open_close.yml
13
+ │ │ ├── pr-checker.yml
14
+ │ │ ├── pr_merge.yaml
15
+ │ │ └── pr_raise.yml
16
+ │ └── pull_request_template.md
17
+ │
18
+ ├── assets
19
+ │ ├── GSSoC-Ext.png
20
+ │ ├── hacktoberfest.png
21
+ │ └── image
22
+ │
23
+ ├── client
24
+ │ ├── favicon_io
25
+ │ ├── src
26
+ │ ├── .env.sample
27
+ │ ├── .eslintrc.cjs
28
+ │ ├── .gitignore
29
+ │ ├── README.md
30
+ │ ├── index.html
31
+ │ ├── package-lock.json
32
+ │ ├── package.json
33
+ │ ├── popup.jpg
34
+ │ ├── popup.js
35
+ │ ├── postcss.config.js
36
+ │ ├── projectupload.html
37
+ │ ├── tailwind.config.js
38
+ │ ├── test.css
39
+ │ ├── test.html
40
+ │ ├── visi.css
41
+ │ ├── visi.js
42
+ │ └── vite.config.js
43
+ │
44
+ ├── server
45
+ │ ├── Controllers
46
+ │ ├── Models
47
+ │ ├── middleware
48
+ │ ├── routes
49
+ │ ├── .env.sample
50
+ │ ├── .gitignore
51
+ │ ├── db.js
52
+ │ ├── index.js
53
+ │ ├── package-lock.json
54
+ │ ├── package.json
55
+ │ └── sendMail.js
56
+ │
57
+ ├── .env.txt
58
+ ├── CONTRIBUTING.md
59
+ ├── Code_of_Conduct.md
60
+ ├── LICENSE
61
+ ├── README.md
62
+ └── package-lock.json
63
+ ```
You can’t perform that action at this time.
0 commit comments