Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kohdc1723/my-wardrobe
https://github.com/kohdc1723/my-wardrobe
java jpa-hibernate spring spring-boot spring-security
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kohdc1723/my-wardrobe
- Owner: kohdc1723
- Created: 2024-02-09T03:43:26.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-02-22T00:30:43.000Z (11 months ago)
- Last Synced: 2024-02-22T02:26:19.170Z (11 months ago)
- Topics: java, jpa-hibernate, spring, spring-boot, spring-security
- Language: Java
- Homepage:
- Size: 641 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# My Wordrobe
## Project Summary
### About
**My Wardrobe** is a web application designed for users to efficiently organize and manage their clothing items.### Key Features
- Catalog clothing items
- Search clothing items by name or brand
- Filter clothing items by seasons and collections
- Create a look by combining clothing items### Built with
![java]
![spring]
![spring-boot]
![spring-security]
![jwt]
![h2]
![jpa-hibernate]---
## Project Details
### File Structure
.
├── src
├── gradle
├── .idea
├── gradlew
├── gradlew.bat
├── settings.gradle
├── build.gradle
└── README.md### Entity Relationship Diagram
![img.png](img.png)### API Endpoints
**Auth**
`POST`: `/api/auth/register`
| params | type | required | description |
|-----------|--------|----------|-----------------------------------------------------------------------------------|
| email | string | true | valid email format |
| password | string | true | min length is 8 with at least one lowercase, uppercase, number, special character |
| firstname | string | true | N/A |
| lastname | string | true | N/A |`POST`: `/api/auth/login`
| params | type | required | description |
|-----------|--------|----------|-------------|
| email | string | true | N/A |
| password | string | true | N/A |**Users**
`GET`: `/api/users/{id}`
`GET`: `/api/users/{id}/clothes`
`GET`: `/api/users/{id}/collections`
`GET`: `/api/users/{id}/looks`
`GET`: `/api/users/{id}/keywords`
`PATCH`: `/api/users/{id}`
`DELETE`: `/api/users/{id}`
**Clothes**
`POST`: `/api/clothes`
`GET`: `/api/clothes/{id}`
`PATCH`: `/api/clothes/{id}`
`DELETE`: `/api/clothes/{id}`
**Collections**
`POST`: `/api/collections`
`GET`: `/api/collections/{id}`
`PATCH`: `/api/collections/{id}`
`DELETE`: `/api/collections/{id}`
**Looks**
`POST`: `/api/looks`
`GET`: `/api/looks/{id}`
`PATCH`: `/api/looks/{id}`
`DELETE`: `/api/looks/{id}`
**Keywords**
`POST`: `/api/keywords`
`GET`: `/api/keywords/{id}`
`PATCH`: `/api/keywords/{id}`
`DELETE`: `/api/keywords/{id}`
---
[java]: https://img.shields.io/badge/java-F8981D?style=for-the-badge&logoColor=white
[spring]: https://img.shields.io/badge/spring-6DB33F?style=for-the-badge&logo=spring&logoColor=white
[spring-boot]: https://img.shields.io/badge/spring%20boot-6DB33F?style=for-the-badge&logo=springboot&logoColor=white
[spring-security]: https://img.shields.io/badge/spring%20security-6DB33F?style=for-the-badge&logo=springsecurity&logoColor=white
[h2]: https://img.shields.io/badge/h2%20database-0000bb?style=for-the-badge&logoColor=white
[jpa-hibernate]: https://img.shields.io/badge/jpa%20hibernate-59666C?style=for-the-badge&logo=hibernate&logoColor=white
[jwt]: https://img.shields.io/badge/json%20web%20token-000000?style=for-the-badge&logo=jsonwebtokens&logoColor=white