sapling/website
Michael Bolin fb516c52b3 website: update docs for building on Windows
Summary:
I recently built and installed Sapling on a Windows machine
with few existing developer tools installed on it, so I wanted
to capture the `vcpkg` requirements that were not previously
documented.

Reviewed By: akushner

Differential Revision: D42232827

fbshipit-source-id: e6c9ce74b164b8f552188946a032852e06d03ec7
2022-12-27 10:28:30 -08:00
..
docs website: update docs for building on Windows 2022-12-27 10:28:30 -08:00
fb Re-sync with internal repository 2022-11-15 00:48:09 -08:00
scripts temporary fix to website command codegen to work around escaping issue (#352) 2022-12-23 15:07:36 -08:00
src website: improve sapling output rendering 2022-12-16 14:04:17 -08:00
static update ISL screenshots for website to show sl instead of hg 2022-12-07 17:39:48 -08:00
.eslintrc.js Re-sync with internal repository 2022-11-15 00:48:09 -08:00
.gitignore Re-sync with internal repository 2022-11-15 00:48:09 -08:00
.prettierignore Re-sync with internal repository 2022-11-15 00:48:09 -08:00
.prettierrc increase column length so Prettier formats tables 2022-11-18 18:27:04 -08:00
.stylelintrc.js Re-sync with internal repository 2022-11-15 00:48:09 -08:00
babel.config.js Re-sync with internal repository 2022-11-15 00:48:09 -08:00
constants.js Re-sync with internal repository 2022-11-15 00:48:09 -08:00
docusaurus.config.js add link to discord community 2022-11-16 13:43:49 -08:00
elements.tsx Re-sync with internal repository 2022-11-15 00:48:09 -08:00
package.json automatic update for docusaurus-plugin-internaldocs-fb@1.2.1 2022-12-07 08:41:07 -08:00
README.md Re-sync with internal repository 2022-11-15 00:48:09 -08:00
sidebars.js Re-sync with internal repository 2022-11-15 00:48:09 -08:00
tsconfig.json Re-sync with internal repository 2022-11-15 00:48:09 -08:00
yarn.lock automatic update for docusaurus-plugin-internaldocs-fb@1.2.1 2022-12-07 08:41:07 -08:00

Website

This website is built using Docusaurus 2, a modern static website generator.

Installation

$ 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

Using SSH:

$ USE_SSH=true yarn deploy

Not using SSH:

$ GIT_USER=<Your GitHub username> 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.

Continuous Integration

Some common defaults for linting/formatting have been set for you. If you integrate your project with an open source Continuous Integration system (e.g. Travis CI, CircleCI), you may check for issues using the following command.

$ yarn ci