Spaces:
Sleeping
Sleeping
File size: 702 Bytes
90537f3 |
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 |
# Static Images Directory
This directory contains dish images organized by database name.
## Structure:
```
app/static/images/dishes/
βββ tabble_new/ # Demo hotel images
β βββ dish1.jpg
β βββ dish2.jpg
β βββ ...
βββ your_hotel/ # Your hotel images
βββ dish1.jpg
βββ dish2.jpg
βββ ...
```
## Upload Guidelines:
- Use JPEG or PNG format
- Recommended size: 400x300 pixels
- Keep file size under 500KB for better performance
- Use descriptive filenames
## Access URLs:
Images can be accessed at: `/static/images/dishes/{database_name}/{filename}`
Example: `/static/images/dishes/tabble_new/chicken_biryani.jpg` |