https://github.com/arkantrust/fitnest
Fitness e-commerce for Encora Tech Titans 2024.
https://github.com/arkantrust/fitnest
Last synced: 5 months ago
JSON representation
Fitness e-commerce for Encora Tech Titans 2024.
- Host: GitHub
- URL: https://github.com/arkantrust/fitnest
- Owner: arkantrust
- License: mit
- Created: 2024-06-12T01:41:40.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-28T04:42:02.000Z (almost 2 years ago)
- Last Synced: 2025-01-23T04:11:13.536Z (over 1 year ago)
- Language: HTML
- Size: 3.98 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fitnest
Fitness e-commerce for Encora Tech Titans 2024.
## Entity Relation Diagram
```mermaid
erDiagram
USER ||--o{ ORDER : places
ORDER ||--o{ ORDERITEM : contains
PRODUCT ||--o{ ORDERITEM : included_in
CATEGORY ||--o{ PRODUCT : categorizes
PRODUCT ||--o{ REVIEW : receives
USER ||--o{ REVIEW : writes
ORDER ||--|{ PAYMENT : has
USER {
string id PK
string username
string email
string password
string address
}
PRODUCT {
string id PK
string name
float price
string description
string imageUrl
string categoryId FK
}
CATEGORY {
string id PK
string name
}
ORDER {
string id PK
string userId FK
date orderDate
float totalAmount
}
ORDERITEM {
string id PK
string orderId FK
string productId FK
int quantity
float price
}
REVIEW {
string id PK
string userId FK
string productId FK
int rating
string comment
}
PAYMENT {
string id PK
string orderId FK
string paymentMethod
date paymentDate
float amount
}
USER ||--o{ ORDER : places
ORDER ||--o{ ORDERITEM : contains
PRODUCT ||--o{ ORDERITEM : included_in
CATEGORY ||--o{ PRODUCT : categorizes
PRODUCT ||--o{ REVIEW : receives
USER ||--o{ REVIEW : writes
ORDER ||--|{ PAYMENT : has
```