Spaces:
Sleeping
Sleeping
Upload 2 files
Browse files- README.md +25 -0
- requirements.txt +7 -0
README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Food Wastage Management System
|
| 3 |
+
emoji: 🍽️
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: purple
|
| 6 |
+
sdk: streamlit
|
| 7 |
+
sdk_version: 1.31.0
|
| 8 |
+
app_file: app_fixed.py
|
| 9 |
+
pinned: false
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Food Wastage Management System
|
| 13 |
+
|
| 14 |
+
A Streamlit app with authentication (roles: **Admin, NGO, Restaurant**), CRUD flows, SQL analytics, EDA, and interactive maps.
|
| 15 |
+
|
| 16 |
+
## Local dev
|
| 17 |
+
```bash
|
| 18 |
+
pip install -r requirements.txt
|
| 19 |
+
streamlit run app_fixed.py
|
| 20 |
+
```
|
| 21 |
+
|
| 22 |
+
## Demo logins
|
| 23 |
+
- Admin: `admin@demo.com` / `admin123`
|
| 24 |
+
- NGO: `ngo@demo.com` / `ngo12345`
|
| 25 |
+
- Restaurant: `resto@demo.com` / `resto321`
|
requirements.txt
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
streamlit>=1.31
|
| 2 |
+
pandas>=2.0
|
| 3 |
+
numpy>=1.24
|
| 4 |
+
plotly>=5.18
|
| 5 |
+
pydeck>=0.8
|
| 6 |
+
sqlalchemy>=2.0
|
| 7 |
+
statsmodels>=0.14
|