nextjs-corporate-starter
Strapi Demo application for Corporate Websites using Next.js
파일 탐색기
- app.js
- index.html
- admin.js
- api.js
- database.js
- middlewares.js
- plugins.js
- server.js
- .gitkeep
- .gitkeep
- robots.txt
- app.example.js
- webpack.config.example.js
- schema.json
- article.js
- article.js
- article.js
- schema.json
- author.js
- author.js
- author.js
- schema.json
- category.js
- category.js
- category.js
- schema.json
- global.js
- global.js
- global.js
- schema.json
- lead-form-submission.js
- lead-form-submission.js
- lead-form-submission.js
- schema.json
- page.js
- page-populate-middleware.js
- page.js
- page.js
- schema.json
- product-feature.js
- product-feature.js
- product-feature.js
- .gitkeep
- feature-column.json
- feature-row.json
- feature.json
- footer-section.json
- logos.json
- notification-banner.json
- plan.json
- testimonial.json
- footer.json
- logo.json
- navbar.json
- button-link.json
- button.json
- link.json
- social-link.json
- metadata.json
- bottom-actions.json
- feature-columns-group.json
- feature-rows-group.json
- features.json
- heading.json
- hero.json
- large-video.json
- lead-form.json
- pricing.json
- rich-text.json
- testimonials-group.json
- media.json
- quote.json
- rich-text.json
- seo.json
- slider.json
- video-embed.json
- .gitkeep
- index.js
- components.d.ts
- contentTypes.d.ts
- .editorconfig
- .env.example
- .eslintignore
- .eslintrc
- .gitignore
- favicon.png
- package.json
- README.md
- yarn.lock
- next.svg
- thirteen.svg
- undraw-women.png
- vercel.svg
- page.tsx
- layout.tsx
- page.tsx
- page.tsx
- layout.tsx
- page.tsx
- ArticleSelect.tsx
- Banner.tsx
- Error.tsx
- Features.tsx
- Footer.tsx
- FormSubmit.tsx
- Hero.tsx
- HighlightedText.tsx
- ImageSlider.tsx
- LangRedirect.tsx
- LeadForm.tsx
- Loader.tsx
- Logo.tsx
- Media.tsx
- Navbar.tsx
- PageHeader.tsx
- Pricing.tsx
- Quote.tsx
- RichText.tsx
- TestimonialsGroup.tsx
- VideoEmbed.tsx
- route.ts
- api-helpers.ts
- component-resolver.tsx
- constants.ts
- fetch-api.tsx
- get-page-by-slug.ts
- model.ts
- render-button-style.ts
- blog-list.tsx
- post.tsx
- error.tsx
- globals.css
- layout.tsx
- loading.tsx
- page.tsx
- middleware.ts
- .env.example
- .gitignore
- i18n-config.ts
- next.config.js
- package.json
- postcss.config.js
- README.md
- tailwind.config.js
- tsconfig.json
- yarn.lock
- .gitignore
- CODE_OF_CONDUCT.md
- LICENSE
- package-lock.json
- package.json
- README.md
- seed-data.tar.gz
- yarn.lock
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
gh repo
설명 보기 ▼
gh repo
Work with GitHub repositories.
gh repo {{[new|create]}}
Create a new repository interactively:
gh repo clone {{owner}}/{{repository}}
Clone a repository:
gh repo fork {{owner}}/{{repository}} --clone
Fork and clone a repository:
git add
설명 보기 ▼
git add
Stage changed files for a commit.
git add {{path/to/file}}
Stage a file for a commit:
git add {{[-A|--all]}}
Add all files (tracked and untracked):
git add .
Add all files recursively starting from the current folder:
git checkout
설명 보기 ▼
git checkout
Checkout a branch or paths to the working tree.
git checkout -b {{branch_name}}
Create and switch to a new branch:
git checkout -b {{branch_name}} {{reference}}
Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):
git checkout {{branch_name}}
Switch to an existing local branch:
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git commit
설명 보기 ▼
git commit
Commit files to the repository.
git commit
Open an editor to write a message and commit staged files to the repository:
git commit {{[-m|--message]}} "{{message}}"
Commit staged files to the repository with the specified message:
git commit {{[-F|--file]}} {{path/to/commit_message_file}}
Commit staged files with a message read from a file:
git fetch
설명 보기 ▼
git fetch
Download objects and refs from a remote repository.
git fetch
Fetch the latest changes from the default remote upstream repository (if set):
git fetch {{remote_name}}
Fetch new branches from a specific remote upstream repository:
git fetch --all
Fetch the latest changes from all remote upstream repositories:
git merge
설명 보기 ▼
git merge
Merge branches.
git merge {{branch_name1 branch_name2 ...}}
Merge branches into your current branch:
git merge {{[-e|--edit]}} {{branch_name}}
Edit the merge message:
git merge --no-ff {{branch_name}}
Merge a branch and create a merge commit:
git push
설명 보기 ▼
git push
Push commits to a remote repository.
git push
Send local changes in the current branch to its default remote counterpart:
git push {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart:
git push {{[-u|--set-upstream]}} {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart, and set the remote one as the default push/pull target of the local one:
git remote
설명 보기 ▼
git remote
Manage set of tracked repositories ("remotes").
git remote {{[-v|--verbose]}}
List existing remotes with their names and URLs:
git remote show {{remote_name}}
Show information about a remote:
git remote add {{remote_name}} {{remote_url}}
Add a remote:
yarn
설명 보기 ▼
yarn
JavaScript 및 Node.js 패키지 대체 관리자.
더 많은 정보: <https://yarnpkg.com/cli>.
yarn global add {{module_name}}
전역적으로 모듈 설치:
yarn install
`package.json` 파일에 참조된 모든 의존성을 설치 ( `install`은 선택 사항입니다):
yarn add {{module_name}}@{{version}}
모듈을 설치하고 `package.json` 파일에 대한 의존성으로 저장 (개발 전용 의존성으로 추가하려면 `--dev` 추가):
