RandomSec/docs
Antonin Delpeuch 7961c90d44
Documentation versioning (#3847)
* Take snapshot of docs for version 3.4

* Versioning for docs of the cross function, for #2504

* Document 'Store archive file' option (#1963)

* Remove unsupported preference from 3.4 docs (#2624)

* Mention that forEach works on JSON objects (#3149)

* Remove wholeText from 3.4 docs (#3180)

* Document -H, /H CLI options (#3288)

* Migrate Wikibase documentation from Wikidata (#1640)

* Miscellanous, copy-editing
2021-05-08 08:55:39 +02:00
..
docs Documentation versioning (#3847) 2021-05-08 08:55:39 +02:00
src feat: move to em from pixels (#3477) 2021-01-19 09:28:44 +01:00
static Remove trailing slashes in doc pages URLs to fix links. (#3821) 2021-04-24 15:33:24 +02:00
versioned_docs/version-3.4 Documentation versioning (#3847) 2021-05-08 08:55:39 +02:00
versioned_sidebars Documentation versioning (#3847) 2021-05-08 08:55:39 +02:00
.gitignore begin Docusaurus 2 migration (#2799) 2020-06-29 08:45:24 +02:00
.node-version Update Docusaurus to 2.0.0-alpha74 (#3856) 2021-04-28 09:48:33 +02:00
docusaurus.config.js Remove trailing slashes in doc pages URLs to fix links. (#3821) 2021-04-24 15:33:24 +02:00
package.json build(deps): bump @docusaurus/preset-classic in /docs (#3871) 2021-05-03 11:03:41 +02:00
README.md begin Docusaurus 2 migration (#2799) 2020-06-29 08:45:24 +02:00
sidebars.js Documentation versioning (#3847) 2021-05-08 08:55:39 +02:00
versions.json Documentation versioning (#3847) 2021-05-08 08:55:39 +02:00
yarn.lock build(deps): bump @docusaurus/preset-classic in /docs (#3871) 2021-05-03 11:03:41 +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.