* Add a cd step before clone in "Setting Up" Add a `cd` step before clone in **[Setting Up](https://docusaurus.io/docs/en/next/tutorial-setup)**, add examples of `cd` in steps 5 and 7, and edit other steps. * Update tutorial-setup.md
3.1 KiB
id | title |
---|---|
tutorial-setup | Setting Up |
This tutorial is geared at first-time users who want detailed instructions on how to go from zero to a Docusaurus website that has versions. Let's start!
Install Git
Git is a version control system for tracking changes in source code during software development and it can help you synchronize and version files between your local system and your online repository. If not already installed, see Installing Git.
Install Node.js
Node.js is an environment that can run JavaScript code outside of a web browser and is used to write and run server-side JavaScript apps.
Docusaurus' minimum supported Node.js version is Node 8, but more recent versions will work as well.
- Open your Terminal.
- If you have
brew
on your OS, run the following command to install Node (a JavaScript runtime that allows you to run JavaScript on the server) andnpm
the package manager (allows you to install npm modules from your terminal).
brew install node
Alternatively, you can download an installer from the Node.js homepage.
Check your Node.js installation
Check that you have the minimum required version installed by running the following command:
node -v
You should see a version larger than Node 8.
node -v
v8.15.1
Install Yarn (Optional)
We highly recommend that you install Yarn, an alternative package manager that has superb performance for managing your NPM dependencies. Check it out here.
You can still proceed with the tutorial without Yarn.
Create a GitHub repository and local clone
- Go to https://github.com/ and sign up for an account if you don't already have one.
- Click on the green New button or go to https://github.com/new.
- Type a repository name without spaces. For example,
docusaurus-tutorial
. - Click Create repository (without
.gitignore
and without a license).

- In your terminal,
cd
to a directory where the local clone will be a subdirectory. (For help see Introduction to the command-line interface.)
cd /Users/USERNAME/doc_projects # macOS example
# or
cd /c/USERNAME/doc_projects # Windows example
- Clone your repository to your local machine:
git clone git@github.com:USERNAME/docusaurus-tutorial.git # SSH
# or
git clone https://github.com/USERNAME/docusaurus-tutorial.git # HTTPS
cd
to the directory for the local clone.
cd docusaurus-tutorial
Install the Docusaurus init command
Docusaurus comes with a command line tool to help you scaffold a Docusaurus site with some example templates. Let's install the installer!
- Run the following command:
npm install --global docusaurus-init
or if you have Yarn:
yarn global add docusaurus-init