mirror of
https://github.com/facebook/docusaurus.git
synced 2025-07-28 05:58:38 +02:00
* feat: add getting started doc at classic inital templates
* fix: improve the contents of getting started page
* fix: fix slug routing
* fix: rename gettingStarted to getting-started and re-adjust the content
* feat: add markdown-features docs
* feat: add a page on how to create a simple document
* feat: add a page on how to create pages
* feat: add create a post doc
* feat: add thank you page with whats next
* feat : update sidebar.js
* feat : add introduction content
* feat : add self hosting content
* feat : add GitHub pages content
* fix : remove automatically deploying with github actions content
* feat : add deploying to netlify
* feat : add Translate your site
* add : Manage versions
* fix : formatted docs with prettier
* Revert "fix : formatted docs with prettier"
This reverts commit af8c0b48
* run prettier to init templates with fixes
* complete new init template
* rename manage-docs-versions
* change wording
* refresh config file
* rework init template homepage
* minor changes
Co-authored-by: Lisa Chandra <52909743+lisa761@users.noreply.github.com>
Co-authored-by: Javid <singularity.javid@gmail.com>
Co-authored-by: ShinteiMai <stevenhanselgo@gmail.com>
Co-authored-by: slorber <lorber.sebastien@gmail.com>
30 lines
598 B
Markdown
30 lines
598 B
Markdown
---
|
|
title: Getting Started
|
|
slug: /
|
|
---
|
|
|
|
Get started by **creating a new site**
|
|
|
|
Or **try Docusaurus immediately** with **[new.docusaurus.io](https://new.docusaurus.io)** (CodeSandbox).
|
|
|
|
## Generate a new site
|
|
|
|
Generate a new Docusaurus site using the **classic template**:
|
|
|
|
```shell
|
|
npx @docusaurus/init@latest init my-website classic
|
|
```
|
|
|
|
## Start your site
|
|
|
|
Run the development server:
|
|
|
|
```shell
|
|
cd my-website
|
|
|
|
npx docusaurus start
|
|
```
|
|
|
|
Your site starts at `http://localhost:3000`.
|
|
|
|
Open `docs/getting-started.md` and edit some lines: the site **reloads automatically** and display your changes.
|