-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectoryStructure
More file actions
60 lines (60 loc) · 1.98 KB
/
Copy pathDirectoryStructure
File metadata and controls
60 lines (60 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
herbal-ai/
├── screenshots/
├── backend/ # FastAPI backend
│ ├── app/
│ │ ├── __init__.py
│ │ ├── main.py
│ │ ├── database.py
│ │ ├── models.py
│ │ ├── schemas.py
│ │ ├── config.py
│ │ ├── routers/
│ │ │ ├── __init__.py
│ │ │ ├── users.py
│ │ │ └── admins.py
│ │ ├── services/
│ │ │ ├── __init__.py
│ │ │ ├── ai_service.py
│ │ │ └── auth_service.py
│ │ └── utils/
│ │ └── herbs_loader.py
│ ├── herbs.json
│ ├── herb-combinations.json
│ ├── seed.py
│ ├── requirements.txt
│ ├── .env
│ └── Dockerfile
├── frontend/ # React + TypeScript frontend
│ ├── src/
│ │ ├── App.tsx
│ │ ├── index.tsx
│ │ ├── components/
│ │ │ ├── UserForm.tsx
│ │ │ ├── RecommendationDisplay.tsx
│ │ │ ├── ProductCard.tsx
│ │ │ ├── HerbCard.tsx
│ │ │ ├── AdminLogin.tsx
│ │ │ ├── AdminDashboard.tsx
│ │ │ ├── ProductManager.tsx
│ │ │ └── AdminManager.tsx
│ │ ├── pages/
│ │ │ ├── Home.tsx
│ │ │ └── Admin.tsx
│ │ ├── services/
│ │ │ └── api.ts
│ │ └── styles/
│ │ └── tailwind.css
│ ├── public/
│ │ └──
│ ├── index.html
│ ├── tailwind.config.js
│ ├── tsconfig.json
│ ├── vite.config.ts
│ ├── vite-env.d.ts
| ├── .eslintrc.cjs
| ├── .prettierrc
| ├── postcss.config.js
│ ├── package.json
│ └── Dockerfile
├── docker-compose.yml
└── README.md