-
Notifications
You must be signed in to change notification settings - Fork 44
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
부산대 FE_이경서 6주차 과제 step3,4 #126
Open
rudtj
wants to merge
22
commits into
kakao-tech-campus-2nd-step2:rudtj
Choose a base branch
from
rudtj:step4
base: rudtj
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.
Open
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
04d8ffe
docs: README 작성
rudtj 08dcf9f
chore: 이전 과제 파일 구조 업데이트
rudtj 544bf70
chore: add gitignore
rudtj 7cb55ba
chore: add gitignore
rudtj be3f88f
feat: 백엔드 API 선택 추가
rudtj 37fac55
chore: node_modules 제거
rudtj cacea91
feat: admin 추가
rudtj 53781f1
feat: AdminPage 추가
rudtj ef83479
feat: AdminPage 구현
rudtj e185bd0
chore: node_modules 제거
rudtj 0b4ae9e
feat: githubpage 배포
rudtj 9fe71ef
docs: README.md 작성
rudtj c3ce5e4
refactor: 주소 변경
rudtj d7dd4f9
refactor: 주소 변경
rudtj 2390c8c
chore: 이전 작업 저장
rudtj 7262022
docs: README 작성
rudtj 3108025
feat: 카카오 로그인 구현
rudtj 9949216
feat: 포인트 기능 구현
rudtj 336a7b9
refactor: 절대 경로 수정
rudtj 14380a8
feat: basename 추가
rudtj a1afc05
Update README.md
rudtj 55bf790
Merge branch 'rudtj' into step4
rudtj 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 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,25 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
.yaml |
This file contains 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 |
---|---|---|
@@ -1 +1,40 @@ | ||
# react-deploy | ||
# 카카오 테크 캠퍼스 6주차 과제 step2 | ||
|
||
- [x] 세가지 방법 중 본인이 원하는 방식으로 배포한다. | ||
(단, 가능하면 최대한 방법 1, 3번으로 진행하고 CI/CD를 구축하는 것을 권장해요) | ||
|
||
방법1. | ||
|
||
github action을 사용하여 ci/cd를 구성한다. | ||
cloudflare의 pages에 배포한다. | ||
방법2. | ||
|
||
vercel을 사용하여 배포한다. | ||
방법3. | ||
|
||
github pages를 사용하여 배포한다. | ||
서버 API가 의도대로 잘 동작하는지 확인하고, 문제가 있다면 해결한다. | ||
|
||
# 카카오 테크 캠퍼스 6주차 과제 step3 | ||
|
||
- [x] 포인트는 사용자별로 보유한다. | ||
- [x] 포인트 차감 방법 등 나머지 기능에 대해서는 팀과 논의하여 정책을 결정하고 구현한다. | ||
- [x] API 명세는 팀과 협의하여 결정하고 구현한다. | ||
|
||
# 카카오 테크 캠퍼스 6주차 과제 step4 | ||
|
||
- 1. SPA 페이지를 정적 배포를 하려고 할 때 Vercel을 사용하지 않고 한다면 어떻게 할 수 있을까요? | ||
- GitHub Pages : GitHub 저장소에서 정적 웨사이트를 호스팅하는 방법이다. | ||
- AWS S3와 CloudFront : AWS S3는 객체 저장소로 정적 파일을 호스팅할 수 있으며 CloudFront를 사용하면 CDN을 통해 빠르게 배포할 수 있다. | ||
- Firebase Hosting : Google의 클라우드 플랫폼에서 제공하는 서비스로, 빠르고 안전하게 정적 웹사이트를 호스팅할 수 있다. | ||
|
||
- 2. CSRF나 XSS 공격을 막는 방법은 무엇일까요? | ||
- CSRF 방지 방법 - CSRF 토큰 사용 : 서버에서 생성한 고유한 CSRF 토큰을 클라이언트에 전달하고, 모든 상태 변경 요청(POST, PUT, DELETE 등)에 이 토큰을 포함시킨다. - SameSite 쿠키 속성 설정 : 쿠키에 SameSite 속성을 추가하여 외부 사이트에서의 요청을 차단합니다. SameSite=Lax 또는 SameSite=Strict로 설정할 수 있다. | ||
- XSS 방지 방법 - 입력 검증 및 인코딩 : 사용자 입력을 철저히 검증하고, HTML, URL, JavaScript 등에서 사용할 때는 적절히 인코딩한다. - CSP : CSP를 설정하여 신뢰할 수 있는 출처에서만 스크립트를 로드하도록 제한한다. - HTTPOnly 및 Secure 쿠키 설정 : 쿠키에 HTTPOnly 속성을 추가하여 JavaScript에서 접근할 수 없도록 한다. Secure 속성을 추가하면 HTTPS 연결을 통해서만 쿠키가 전송된다. | ||
|
||
- 3. 브라우저 렌더링 원리에 대해 설명해주세요. | ||
- DOM(Document Object Model) 파싱 : HTML 문서를 파싱하여 DOM 구축한다. | ||
- CSSOM(CSS Object Model) 생성 : CSS 파일을 파싱하여 CSSOM 생성한다. | ||
- 렌더 트리 구성 : DOM과 CSSOM를 결합하여 렌더를 구성한다. | ||
- 레이아웃 및 페인팅 : 렌더 트리 기반으로 요소의 정확한 위치와 크기를 계산한 레이아웃과 레이아웃 정보를 바탕으로 실제화면에 그린다. | ||
- 컴포지팅 : 여러 레이어를 합성하여 최종적으로 화면에 표시한다. |
This file contains 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,17 @@ | ||
const path = require('path'); | ||
|
||
module.exports = { | ||
webpack: { | ||
alias: { | ||
'@': path.resolve(__dirname, 'src'), | ||
}, | ||
}, | ||
|
||
jest: { | ||
configure: { | ||
moduleNameMapper: { | ||
'@/(.*)$': '<rootDir>/src/$1', | ||
}, | ||
}, | ||
}, | ||
}; |
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.
지금 경서님께서 답변주신건 "무엇을 사용하며 된다"의 내용인데, 퀴즈에서 요구하는건 "어떻게" 에 대한 내용이라서, 구체적으로 표현해주시면 더 좋을 것 같아요.