-
Notifications
You must be signed in to change notification settings - Fork 30
[박효빈] sprint10-11 #195
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
hyobiin9
wants to merge
29
commits into
codeit-sprint-fullstack:next-박효빈
Choose a base branch
from
hyobiin9:next-박효빈-sprint10-11
base: next-박효빈
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
The head ref may contain hidden characters: "next-\uBC15\uD6A8\uBE48-sprint10-11"
Open
[박효빈] sprint10-11 #195
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
13fbcd6
remove: delete github actions
shyjnnn 43c8329
feat: add: auto-labeling and assignee for PRs
shyjnnn 5b1fbb2
docs: update fe readme
sprint-edu a9a8ddc
feat: header & footer component
hyobiin9 a7b5a42
feat: initial landing page
hyobiin9 609b1fc
feat: landing card component
hyobiin9 bec4f54
feat: login page route
hyobiin9 43b3226
feat: login page ui
hyobiin9 509fce2
feat: login page email & pw validation
hyobiin9 8bd6c7e
feat: signin api connect
hyobiin9 9c0d7e8
feat: signup page ui
hyobiin9 4df608e
feat: signin & signup page api connect & error process
hyobiin9 7706979
feat: signin & signup page modal
hyobiin9 313f556
feat: header login profile
hyobiin9 6d99cba
feat: used market page ui
hyobiin9 0a9972b
feat: best product api connect
hyobiin9 046ce8a
feat: product card
hyobiin9 6a6de5f
feat: pagination & fix domain problem
hyobiin9 25377e5
fix: correction of other errors
hyobiin9 58d8982
feat: get product detail id
hyobiin9 13ec6fa
feat: product detail page top ui
hyobiin9 eedfd18
feat: contact input ui
hyobiin9 3803f07
feat: product comment
hyobiin9 9df5409
feat: favorite func
hyobiin9 9e4cced
feat: used market page dropdown option
hyobiin9 59ee00a
feat: edit page initial ui
hyobiin9 f5b51c9
feat: tag func
hyobiin9 0b39093
feat: image process in edit page
hyobiin9 79e058e
feat: register api connect
hyobiin9 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
NEXT_PUBLIC_BASE_URL = https://panda-market-api.vercel.app |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": ["next/core-web-vitals", "next/typescript"] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: PR 자동 라벨링 및 담당자 할당 | ||
|
||
on: | ||
pull_request: | ||
types: [opened, reopened] | ||
|
||
jobs: | ||
add-labels-assign: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Add labels and assign PR creator | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
PR_NUMBER=${{ github.event.pull_request.number }} | ||
PR_CREATOR=${{ github.event.pull_request.user.login }} | ||
|
||
# Add labels | ||
curl -X POST -H "Authorization: token $GITHUB_TOKEN" \ | ||
-H "Accept: application/vnd.github.v3+json" \ | ||
https://api.github.com/repos/${{ github.repository }}/issues/$PR_NUMBER/labels \ | ||
-d '{"labels":["매운맛🔥", "진행 중 🏃"]}' | ||
|
||
# Assign PR creator | ||
curl -X POST -H "Authorization: token $GITHUB_TOKEN" \ | ||
-H "Accept: application/vnd.github.v3+json" \ | ||
https://api.github.com/repos/${{ github.repository }}/issues/$PR_NUMBER/assignees \ | ||
-d "{\"assignees\":[\"$PR_CREATOR\"]}" |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
.yarn/install-state.gz | ||
|
||
# testing | ||
/coverage | ||
|
||
# next.js | ||
/.next/ | ||
/out/ | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# local env files | ||
.env*.local | ||
|
||
# vercel | ||
.vercel | ||
|
||
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# 🐼 판다마켓 프로젝트 | ||
|
||
> _이 저장소는 판다마켓 프로젝트의 프론트엔드 코드를 관리하는 곳입니다. 프로젝트를 클론하여 개발 환경을 설정하고, 각 브랜치에서 해당 스프린트 미션을 수행해 주세요!_ 🛠️ | ||
|
||
## 소개 | ||
|
||
안녕하세요! 판다마켓 프로젝트에 오신 것을 환영합니다! 🥳 | ||
판다마켓은 따뜻한 중고거래를 위한 커뮤니티 플랫폼이에요. 여러분은 이곳에서 상품을 등록하고, 다른 사용자들과 소통하며, 자유롭게 이야기를 나눌 수 있어요. 매주 스프린트 미션을 통해 기능을 하나씩 만들어 가며 성장해 나가는 여정을 함께해요. 🚀 | ||
|
||
 | ||
_위 이미지는 판다마켓의 대표 이미지입니다._ 📸 | ||
|
||
## 스프린트 미션이란? 🤔 | ||
|
||
스프린트 미션은 **하나의 개인 프로젝트를 길게 진행하면서, 그 과정에서 주기적으로 피드백을 받을 수 있는 시스템**이에요. 각 스프린트마다 배운 이론을 적용해 보고, **멘토님께 코드 리뷰를 받아가며 실력을 쑥쑥 키워갈 수 있는 중요한 개인 과제**랍니다. 💪 | ||
|
||
## 주요 기능 ✨ | ||
|
||
1. **상품 등록**: 내가 가진 물건을 올리고, 사진과 설명을 추가해 직접 판매할 수 있어요! | ||
2. **문의 댓글**: 상품에 대한 궁금한 점이나 의견을 자유롭게 남길 수 있답니다. 📝 | ||
3. **자유게시판**: 다양한 주제로 친구들과 이야기를 나누고, 정보를 공유할 수 있는 공간이에요! 🗣️ | ||
|
||
## 프로젝트 브랜치 구조 🏗️ | ||
|
||
프로젝트는 단계별로 나뉘어 있고, 각 스프린트 미션에 맞는 브랜치가 있어요. 각 브랜치를 통해 체계적으로 개발하며 학습할 수 있어요. 🎯 | ||
|
||
### 브랜치 설명 | ||
|
||
1. **basic (part1): 스프린트 미션 1 ~ 4 FE 요구사항** | ||
|
||
- 기본적인 웹 애플리케이션 기능 구현을 위한 초기 브랜치입니다. HTML, CSS, JavaScript 등을 사용해 기본을 다집니다. | ||
- **스프린트 미션 1부터 4까지**의 프론트엔드 내용을 포함하고 있어요. | ||
|
||
2. **react (part2): 스프린트 미션 5 ~ 7 FE 요구사항** | ||
|
||
- React 라이브러리를 사용해 프론트엔드 기능을 구현하는 브랜치입니다. 컴포넌트 기반 아키텍처와 상태 관리를 배웁니다. | ||
- **스프린트 미션 5부터 7까지, 그 이후**의 프론트엔드 내용을 포함하고 있어요. | ||
- 만약 스프린트 미션 9부터 프론트엔드 코드를 Next가 아닌 React로 구현하고 싶다면 react 브랜치를 사용해요. | ||
|
||
3. **next (part3,4): 스프린트 미션 8 FE 요구사항~** | ||
|
||
- Next.js를 사용해 서버 사이드 렌더링(SSR)과 정적 사이트 생성(SSG) 등 고급 기능을 구현합니다. | ||
- **스프린트 미션 8부터** 시작하는 프론트엔드 내용을 포함하고 있어요. | ||
- 만약 스프린트 미션 9부터 프론트엔드 코드를 React가 아닌 Next로 구현하고 싶다면 next 브랜치를 사용해요. | ||
|
||
> _스프린트 미션 내 백엔드 요구사항은 [백엔드 레포지토리](https://github.com/codeit-sprint-fullstack/2-Sprint-mission-Be)의 브랜치에서 관리해주세요_ | ||
|
||
--- | ||
|
||
본 프로젝트는 [코드잇](https://www.codeit.kr)의 소유이며, 교육 목적으로만 사용됩니다. © 2024 Codeit. All rights reserved. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const nextConfig = { | ||
images: { | ||
domains: [], | ||
}, | ||
output: "standalone", | ||
}; | ||
|
||
export default nextConfig; |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@hyobiin9 이게 뭐에요??