From e587a4eb60fe872d48d573ab2046d10c1d808c0f Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Tue, 19 May 2020 11:09:24 +0000 Subject: [PATCH] Deploy website Deploy website version based on d94a549cfbf054acf80e92fda0fbe8072f8e1d9d --- docs/pt-BR/1.10.x/tutorial-setup.html | 30 ++++++------ docs/pt-BR/1.10.x/tutorial-setup/index.html | 30 ++++++------ docs/pt-BR/1.11.x/tutorial-setup.html | 30 ++++++------ docs/pt-BR/1.11.x/tutorial-setup/index.html | 30 ++++++------ docs/pt-BR/1.12.0/tutorial-setup.html | 30 ++++++------ docs/pt-BR/1.12.0/tutorial-setup/index.html | 30 ++++++------ docs/pt-BR/1.13.0/tutorial-setup.html | 52 ++++++++++----------- docs/pt-BR/1.13.0/tutorial-setup/index.html | 52 ++++++++++----------- docs/pt-BR/1.9.x/tutorial-setup.html | 30 ++++++------ docs/pt-BR/1.9.x/tutorial-setup/index.html | 30 ++++++------ docs/pt-BR/next/tutorial-setup.html | 52 ++++++++++----------- docs/pt-BR/next/tutorial-setup/index.html | 52 ++++++++++----------- docs/pt-BR/tutorial-setup.html | 52 ++++++++++----------- docs/pt-BR/tutorial-setup/index.html | 52 ++++++++++----------- 14 files changed, 276 insertions(+), 276 deletions(-) diff --git a/docs/pt-BR/1.10.x/tutorial-setup.html b/docs/pt-BR/1.10.x/tutorial-setup.html index ddd9144b95..db64f35ab4 100644 --- a/docs/pt-BR/1.10.x/tutorial-setup.html +++ b/docs/pt-BR/1.10.x/tutorial-setup.html @@ -1,4 +1,4 @@ -Setting Up · Docusaurus
Translate

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!

-

Docusaurus campfire {.docImage}

-

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.

+
Translate

Setting Up

Este tutorial é voltado para usuários iniciantes que desejam instruções detalhadas sobre como ir do zero para um site da Docusaurus que possui versões. Vamos começar!

+

Fogueira Docusaurus {.docImage}

+

Instalar Node.js

+

O Node.js é um ambiente que pode executar o código JavaScript fora de um navegador da web e é usado para gravar e executar aplicativos JavaScript do servidor.

-

Docusaurus' minimum supported Node.js version is Node 8, but more recent versions will work as well.

+

A versão mínima suportada do Node.js. do Docusaurus é o Node 8, mas as versões mais recentes também funcionam.

    -
  1. Open your Terminal.
  2. -
  3. 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) and npm the package manager (allows you to install npm modules from your terminal).
  4. +
  5. Abra o Terminal.
  6. +
  7. Se você tiver brew no sistema operacional, execute o seguinte comando para instalar o Node (um tempo de execução JavaScript que permite executar o JavaScript no servidor) e npm o gerenciador de pacotes (permite você instala módulos npm a partir do seu 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:

+

Como alternativa, você pode baixar um instalador da página inicial do Node.js .

+

Verifique sua instalação do Node.js.

+

Verifique se você possui a versão mínima necessária instalada executando o seguinte comando:

node -v
 
-

You should see a version larger than Node 8.

+

Você deve ver uma versão maior que o Nó 8.

node -v
 v8.15.1
 

Install Yarn (Optional)

We highly recommend you to 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.

+

Você ainda pode prosseguir com o tutorial sem o Yarn.

Create a GitHub Repository

    -
  1. Go to https://github.com/ and sign up for an account if you don't already have one.
  2. +
  3. Vá para https://github.com/ e crie uma conta, caso ainda não a tenha.
  4. Click on "New Repository" or go to https://github.com/new.
  5. Name your repository without spaces. For e.g. docusaurus-tutorial.
  6. Proceed to create the repository without adding .gitignore or a license.
  7. @@ -135,7 +135,7 @@ git clone https://github.com/USERNAME/docusau

    or if you have Yarn:

    yarn global add docusaurus-init
     
    -