https://github.com/0xc0ffe2/donghyun_cc_be
블로그의 백엔드 소스입니다
https://github.com/0xc0ffe2/donghyun_cc_be
blog-service domain-driven-design layered-architecture
Last synced: 2 months ago
JSON representation
블로그의 백엔드 소스입니다
- Host: GitHub
- URL: https://github.com/0xc0ffe2/donghyun_cc_be
- Owner: 0xC0FFE2
- Created: 2024-09-13T14:55:26.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2025-02-20T09:20:32.000Z (3 months ago)
- Last Synced: 2025-02-20T10:27:23.779Z (3 months ago)
- Topics: blog-service, domain-driven-design, layered-architecture
- Language: TypeScript
- Homepage: https://api.donghyun.cc
- Size: 280 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# DONGHYUN.CC 백엔드 엔진
## Article (게시물)
| Field Name | Type | Description |
|---------------------|------------|------------------------------------|
| `article_id` | Integer(increment) | 게시글 고유 ID (Primary Key) |
| `article_date` | DateTime | 게시글 작성 날짜 |
| `article_name` | String | 게시글 제목 |
| `thumbnail_url` | String | 게시글 썸네일 URL |
| `article_data_url` | String | 게시글 내용 MD파일 URL |
| `article_view_mode` | Enum | 게시글 조회 모드 (Enum) |
| `categorys` | ManyToMany | 관련된 카테고리 (Category) |## Category (카테고리)
| Field Name | Type | Description |
|---------------------|------------|------------------------------------|
| `category_id` | UUID | 카테고리 고유 ID (Primary Key) |
| `category_name` | String | 카테고리 이름 |
| `articles` | ManyToMany | 관련된 게시글 (Article) |