Skip to content

Commit 7eed68c

Browse files
committed
2 parents 69a7163 + 13907d0 commit 7eed68c

1 file changed

Lines changed: 41 additions & 14 deletions

File tree

README.md

Lines changed: 41 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -91,22 +91,49 @@ It eliminates fake certificates, manual delays, and opaque approvals by combinin
9191

9292
```
9393
VerifiX/
94-
├── frontend/
95-
│ ├── pages/
96-
│ │ ├── StudentDashboard.jsx
97-
│ │ ├── MyRequests.jsx
98-
│ │ ├── MyCertificates.jsx
99-
│ │ ├── VerifyCertificate.jsx
100-
│ │ ├── AdminDashboard.jsx
101-
│ │ └── AdminRequestDetails.jsx
102-
│ ├── firebase.js
103-
│ └── App.jsx
94+
├── backend/
95+
│ ├── node_modules/
96+
│ ├── .env
97+
│ ├── package.json
98+
│ ├── package-lock.json
99+
│ ├── serviceAccountKey.json
100+
│ └── index.js
104101
105-
├── functions/
106-
│ ├── index.js # AI pipeline & certificate generation
107-
│ └── package.json
102+
├── frontend/
103+
│ ├── dist/
104+
│ ├── node_modules/
105+
│ ├── src/
106+
│ │ ├── auth/
107+
│ │ │ └── AuthContext.jsx
108+
│ │ ├── hooks/
109+
│ │ │ └── useUserRole.js
110+
│ │ ├── pages/
111+
│ │ │ ├── StudentDashboard.jsx
112+
│ │ │ ├── MyRequests.jsx
113+
│ │ │ ├── MyCertificates.jsx
114+
│ │ │ ├── VerifyCertificate.jsx
115+
│ │ │ ├── AdminDashboard.jsx
116+
│ │ │ └── AdminRequestDetails.jsx
117+
│ │ ├── App.jsx
118+
│ │ ├── firebase.js
119+
│ │ ├── index.css
120+
│ │ └── main.jsx
121+
│ ├── index.html
122+
│ ├── vite.config.js
123+
│ ├── tailwind.config.js
124+
│ ├── postcss.config.js
125+
│ ├── package.json
126+
│ └── package-lock.json
108127
109-
└── README.md
128+
├── .firebase/
129+
├── .firebaserc
130+
├── firebase.json
131+
├── firestore.rules
132+
├── storage.rules
133+
├── CNAME
134+
├── README.md
135+
└── .gitignore
136+
110137
111138
```
112139
### 🔐 Security & Privacy

0 commit comments

Comments
 (0)