Conversation
- scaffold React, Vite, and TypeScript frontend app under apps/web - add React Router based page routing and shared MainLayout - add fetch-based API client and localStorage utilities for user/cart state - add placeholder pages for home, products, auth, cart, checkout, orders, and reviews - apply initial E-Commerce header policy and global styles - add GitHub Actions CI workflow for backend and frontend validation - add PR template and Python lint configurations for ruff and pylint
- remove unused approved_amount assignment in payment simulation service - ensure backend ruff check passes in CI
- ensure GitHub Actions uses the root .pylintrc file - relax pylint convention and refactor rules for existing backend code - keep backend CI focused on ruff, pylint baseline, and pytest validation
- add psycopg2-binary to support SQLAlchemy postgresql:// database URLs - fix backend pytest collection failure in GitHub Actions CI
…oundation feat(frontend): set up frontend foundation and CI pipeline [D2C-31]
- build home page hero section for D2C Commerce prototype - add entry cards for product browsing, cart, checkout, and order history flows - add login and signup CTA section for unauthenticated users - improve home page spacing, typography, and responsive layout
…-navigation feat(frontend): implement home entry navigation [D2C-32]
- connect category and product list APIs to the product catalog page - add category-based product filtering and product detail navigation - implement product card grid with loading, empty, and error states - add client-side pagination with 12, 24, and 48 item display options - scroll to catalog top when changing page or display size - enable CORS for local frontend API requests
…st-navigation [D2C-33] 카테고리/상품 목록 화면 및 상품 탐색 흐름 구현
- connect product detail API and render product detail page - add quantity selector and cart add action from product detail - create cart when stored cart_id is missing and persist cart_id in localStorage - show login guidance, success, and error feedback for cart add flow - add cart API client and cart-related frontend types - add favicon asset and register it in the Vite index page
…tail-cart-flow feat(frontend): implement product detail and cart add flow [D2C-34]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
개요
D2C-33에서는 사용자가 카테고리별 상품 목록을 탐색하고, 상품 카드에서 상세 화면으로 이동할 수 있는 상품 목록 화면을 구현했습니다.
D2C-34에서는 상품 상세 화면에서 상품 정보를 확인하고, 수량을 선택한 뒤 장바구니에 상품을 담을 수 있는 흐름을 구현했습니다.
본 PR에서는
develop에서 검증된 상품 탐색, 상품 상세, 장바구니 담기 흐름을main에 병합하여 Sprint 2 프론트엔드의 두 번째 기능 기준점을 정리합니다.포함 범위
D2C-33 카테고리/상품 목록 화면 및 상품 탐색 흐름 구현
D2C-34 상품 상세 화면 및 장바구니 담기 흐름 구현
cart_id가 없을 경우 장바구니 생성cart_id를 localStorage에 저장index.html반영검증 결과
develop브랜치 기준으로 프론트엔드 타입 체크를 실행하여 정상 통과를 확인했습니다.프론트엔드 빌드를 실행하여 정상 통과를 확인했습니다.
프론트엔드 개발 서버와 백엔드 서버를 함께 실행하여 상품 탐색 및 장바구니 담기 흐름을 수동 확인했습니다.
수동 확인 항목:
http://localhost:5173/products접속 확인브랜치 통합 방식
이번 PR의 통합 흐름은 아래와 같습니다.
main병합 후에는 상품 목록 탐색, 상품 상세 조회, 장바구니 담기까지 이어지는 사용자 흐름이 배포 기준 브랜치에 반영됩니다.향후 브랜치 운영 원칙
Sprint 2에서는 아래 브랜치 운영 원칙을 유지합니다.
develop에서 분기develop으로 개별 PR 생성develop을main에 병합main은 배포 기준 브랜치로 유지체크리스트
develop에 병합develop에 병합develop기준 프론트엔드 typecheck / build / dev 확인.env,node_modules,dist, cache 파일이 커밋에 포함되지 않도록 확인main병합 완료main기준 최종 확인