sapling/website
Jun Wu 68cde3c87d website: remove ghstack page
Summary:
With dotgit mode, users should be able to use the unmodified `ghstack` just fine.
There is no need for first party support for this 3rd party tool.

`ghstack` runs low-level Git commands that will not work if we migrate the `.sl/`
Git support to not use the Git on-disk format (for the benefit of laziness or
repack-free). There are already 3 different ways to `pr submit`, `ghstack` seems
just further adding confusion.

Reviewed By: sggutier

Differential Revision: D55970086

fbshipit-source-id: 85616f7f57b8bcebec0c83e326aecd4aaee090a7
2024-04-10 10:41:39 -07:00
..
docs website: remove ghstack page 2024-04-10 10:41:39 -07:00
fb Re-sync with internal repository 2022-11-15 00:48:09 -08:00
scripts website: escape command argument description 2024-04-10 10:41:39 -07:00
src website: update docs for the new release 2024-01-18 11:38:06 -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 Adds Documentation link to menu 2024-03-04 14:19:19 -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.16.2,@docusaurus/core@2.4.3,@docusaurus/preset-classic@2.4.3,@docusaurus/module-type-aliases@2.4.3 2023-10-21 15:20:47 -07: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 build(deps): bump express from 4.18.1 to 4.19.2 in /website (#859) 2024-03-27 11:14:09 -07: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