Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.33 KB

create-local-dev-env.md

File metadata and controls

37 lines (26 loc) · 1.33 KB

Prerequisite

All the programs are free to use:

  1. Install Git
  2. Install node.js
  3. Install yarn
  4. Install VS Code

Create a local copy of the site on your machine

  1. Open VS Code, choose => Clone remote GitHub repo.
  2. Set the github repo to clone: https://github.com/overwolf/overwolf.github.io.git
  3. Choose local folder to clone to. For example: "d:\dev-site".

Install Docusaurus locally

  1. open the terminal in VS Code.
  2. cd .\website - change directory to the website directory.
  3. yarn install - install all the required packges.
  4. yarn start - start the docusaurus app locally. That will automatically open your default browser with the local copy of the site.

Day to day workflow

Community members:

  1. Open VS Code.
  2. get the latest version from remote.
  3. Work on your files. Do changes.
  4. At EOD, commit changes (to local repo), and create Pull Request to the source branch.

If you have write permissions to the repo: (OW employees)

  1. Open VS Code.
  2. Click on the sync button. That will sync the local repo with the remote. (push and pull).
  3. Work on your files. Do changes.
  4. At EOD, commit changes (to local repo), and that hit sync button again.