RandomSec/docs
dependabot[bot] ca08e27deb
build(deps): bump ssri from 6.0.1 to 6.0.2 in /docs (#3834)
Bumps [ssri](https://github.com/npm/ssri) from 6.0.1 to 6.0.2.
- [Release notes](https://github.com/npm/ssri/releases)
- [Changelog](https://github.com/npm/ssri/blob/v6.0.2/CHANGELOG.md)
- [Commits](https://github.com/npm/ssri/compare/v6.0.1...v6.0.2)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-04-20 21:08:23 +02:00
..
docs Adding 3 prefs in the documentation: ui.browsing.pageSize, ui.browsing.facetsHistoryPanelWidth & cell-ui.previewMatchedCells (#3722) 2021-04-16 18:06:30 +02:00
src feat: move to em from pixels (#3477) 2021-01-19 09:28:44 +01:00
static Added functional tests for scatterplot facets 2021-04-11 21:05:27 +02:00
.gitignore begin Docusaurus 2 migration (#2799) 2020-06-29 08:45:24 +02:00
docusaurus.config.js Enable docusaurus link checker. Closes #3529. (#3576) 2021-02-20 10:08:45 +01:00
package.json Bump react-dom from 16.13.1 to 16.14.0 in /docs (#3455) 2021-01-08 10:29:26 +01:00
README.md begin Docusaurus 2 migration (#2799) 2020-06-29 08:45:24 +02:00
sidebars.js Expressions reorganizing (#3610) 2021-03-15 16:44:34 +01:00
yarn.lock build(deps): bump ssri from 6.0.1 to 6.0.2 in /docs (#3834) 2021-04-20 21:08:23 +02:00

How to build these docs

We use Docusaurus 2 for our docs, a modern static website generator.

Requirements

Assuming you have Node.js installed (which includes npm), you can install Docusaurus with:

You will need to install Yarn before you can build the site.

npm install -g yarn

Installation

Once you have installed yarn, navigate to docs directory & set-up the dependencies.

cd docs
yarn

Local Development

yarn start

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

Build

yarn build

This command generates static content into the build directory and can be served using any static contents hosting service.

Deployment

GIT_USER=<Your GitHub username> USE_SSH=true yarn deploy

If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the gh-pages branch.