Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wayandway/moneylog-frontend
Blog Platform Service / v1 development in progress
https://github.com/wayandway/moneylog-frontend
feature-sliced-design mui nextjs15
Last synced: about 7 hours ago
JSON representation
Blog Platform Service / v1 development in progress
- Host: GitHub
- URL: https://github.com/wayandway/moneylog-frontend
- Owner: wayandway
- Created: 2024-11-26T10:10:44.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2025-01-07T16:08:08.000Z (3 days ago)
- Last Synced: 2025-01-07T16:24:48.318Z (3 days ago)
- Topics: feature-sliced-design, mui, nextjs15
- Language: TypeScript
- Homepage:
- Size: 383 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Getting Started
First, run the development server:
```bash
yarn dev
```Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
## 디렉토리 구조 (FSD)
```bash
├── app/ # Next.js App Router 기본 폴더
├── src/
│ ├── app/ # FSD 패턴의 app 디렉토리 (App Router와 분리)
│ ├── views/ # FSD 패턴의 pages 디렉토리를 views로 변경
│ ├── widgets/ # 재사용 가능한 UI 컴포넌트들
│ ├── (features/) # 기능별 폴더 (추후 추가 예정)
│ ├── (entities/) # 도메인별 폴더 (추후 추가 예정)
│ ├── shared/ # 공통으로 사용되는 컴포넌트 및 유틸리티
└── ...
```## Deploy on Vercel