Create a New Site
이 섹션에서는 도쿠사우르스를 이용해서 로컬 개발 환경을 구축하는 방법을 알아보겠습니다. The process only takes a few minutes.
 {.docImage}
Scaffold the Site
cd명령어로 로컬 저장소 디렉토리로 이동합니다.
cd docusaurus-tutorial
- Execute the 
docusaurus-initcommand in your terminal. 
docusaurus-init
The
Linking dependencies...step might take a while, but it will finish eventually.
The following contents will be created in your current directory. Some example documentation pages (under docs) and blog posts (under website/blog) are included.
├── Dockerfile
├── docker-compose.yml
├── docs
│   ├── doc1.md
│   ├── doc2.md
│   ├── doc3.md
│   ├── exampledoc4.md
│   └── exampledoc5.md
└── website
    ├── README.md
    ├── blog
    │   ├── 2016-03-11-blog-post.md
    │   ├── 2017-04-10-blog-post-two.md
    │   ├── 2017-09-25-testing-rss.md
    │   ├── 2017-09-26-adding-rss.md
    │   └── 2017-10-24-new-version-1.0.0.md
    ├── core
    │   └── Footer.js
    ├── package.json
    ├── pages
    │   └── en
    │       ├── help.js
    │       ├── index.js
    │       └── users.js
    ├── sidebars.json
    ├── siteConfig.js
    ├── static
    │   ├── css
    │   │   └── custom.css
    │   └── img
    │       ├── docusaurus.svg
    │       ├── favicon
    │       │   └── favicon.ico
    │       ├── favicon.png
    │       └── oss_logo.png
    └── yarn.lock
- Run 
cd websiteto go into thewebsitedirectory. - Run 
npm startoryarn start. 
A browser window will open up at http://localhost:3000.
Congratulations, you have just made your first Docusaurus site! Click around the pages to get a feel for it.