Publishing your site
现在, 您应该有一个 站点, 并在本地运行 。 一旦您有了 自定义 的喜好, 就该发布它了。 Docusaurus 生成一个静态 HTML 网站, 它可以由您喜爱的 web 服务器或在线托管解决方案提供服务。
构建静态 HTML 页
要创建网站的静态生成, 请从 网站
目录中运行以下脚本:
yarn 运行 `build` # 或者 `npm run build`
这将在 网站
目录中生成一个 "生成"
目录, 其中包含 页
中包含的所有文档和其他页中所含的. html ` 文件。
构建静态 HTML 页
At this point, you can grab all of the files inside the For example, both Apache and nginx serve content from When serving the site from your own web server, ensure the web server is serving the asset files with the proper HTTP headers. CSS files should be served with the While choosing a web server or host is outside Docusaurus' scope, Docusaurus was designed to work really well with one of the most popular hosting solutions for open source projects: GitHub Pages. Deploying your Docusaurus site to GitHub Pages is straightforward if you are already using GitHub to host your project. Your code repository does not even need to be public. Even if your repository is private, anything published to a Most of the work to publish to GitHub pages is done for you automatically through the Two of the required parameters are set in the Docusaurus also supports deploying user or organization sites. To do this, just set While we recommend setting the One of the required parameters is set as a environment variable: There are also two optional parameters that are set as environment variables: Once you have the parameter value information, you can go ahead and run the publish script, ensuring you have inserted your own values inside the various parameter placeholders: To run the script directly from the command-line, you can use the following, filling in the parameter values as appropriate. If you run into issues related to SSH keys, visit GitHub's authentication documentation. The specified You should now be able to load your website by visiting its GitHub Pages URL, which could be something along the lines of https://username.github.io/projectName, or a custom domain if you have set that up. For example, Docusaurus' own GitHub Pages URL is https://facebook.github.io/Docusaurus (it can also be accessed via https://docusaurus.io/), because it is served from the You can run the command above any time you update the docs and wish to deploy the changes to your site. Running the script manually may be fine for sites where the documentation rarely changes and it is not too much of an inconvenience to remember to manually deploy changes. However, you can automate the publishing process with continuous integration (CI). Continuous integration (CI) services are typically used to perform routine tasks whenever new commits are checked in to source control. These tasks can be any combination of running unit tests and integration tests, automating builds, publishing packages to NPM, and yes, deploying changes to your website. All you need to do to automate deployment of your website is to invoke the If you haven't done so already, you can setup CircleCI for your open source project. Afterwards, in order to enable automatic deployment of your site and documentation via CircleCI, just configure Circle to run the Make sure to replace all DO NOT place the actual value of If you want to use SSH for your GitHub repository connection, you can set Unlike when you run the Now, whenever a new commit lands in If you would rather use a deploy key instead of a personal access token, you can by starting with the Circle CI instructions for adding a read/write deploy key. When initially deploying to a Save this file as Now, whenever a new commit lands in Steps to configure your Docusaurus-powered site on Netlify. Select New site from Git Connect to your preferred Git provider. Select the branch to deploy. Default is Configure your build steps: 单击 ** 部署站点 ** You can also configure Netlify to rebuild on every commit to your repository, or only GitHub enterprise installations should work in the same manner as github.com; you only need to identify the organization's GitHub Enterprise host. Alter your website/build` directory and copy them over to your favorite web server's `html` directory.
/var/www/html
by default. That said, choosing a web server or provider is outside the scope of Docusaurus.content-type
header of text/css
. In the case of nginx, this would mean setting include /etc/nginx/mime.types;
in your nginx.conf
file. See this issue for more info.
Hosting on a Service:
Using GitHub Pages
gh-pages
branch will be public.publish-gh-pages
script. You just need to determine the values for a few parameters required by the script.siteConfig.js
:
Name Description organizationName
The GitHub user or organization that owns the repository. In the case of Docusaurus, that would be the "facebook" GitHub organization. projectName
The name of the GitHub repository for your project. For example, Docusaurus is hosted at https://github.com/facebook/docusaurus, so our project name in this case would be "docusaurus".
projectName
to "username.github.io" (where username is your username or organization name on GitHub) and organizationName
to "username".
For user or org sites, the publish script will deploy these sites to the root of the master
branch of the username.github.io repo. In this case, note that you will want to have the Docusaurus infra, your docs, etc. either in another branch of the username.github.io repo (e.g., maybe call it source
), or in another, separated repo (e.g. in the same as the documented source code).projectName
and organizationName
in siteConfig.js
, you can also use environment variables ORGANIZATION_NAME
and PROJECT_NAME
.
Name Description GIT_USER
The username for a GitHub account that has commit access to this repo. For your own repositories, this will usually be your own GitHub username.
Name Description USE_SSH
If this is set to true
, then SSH is used instead of HTTPS for the connection to the GitHub repo. HTTPS is the default if this variable is not set.CURRENT_BRANCH
The branch that contains the latest docs changes that will be deployed. Usually, the branch will be master
, but it could be any branch (default or otherwise) except for gh-pages
. If nothing is set for this variable, then the current branch will be used.GIT_USER=<GIT_USER> \
CURRENT_BRANCH=master \
USE_SSH=true \
yarn run publish-gh-pages # or `npm run publish-gh-pages`
GIT_USER
must have push access to the repository specified in the combination of organizationName
and projectName
.gh-pages
branch of the https://github.com/facebook/docusaurus GitHub repository. We highly encourage reading through the GitHub Pages documentation to learn more about how this hosting solution works.
Automating Deployments Using Continuous Integration
publish-gh-pages
script whenever your docs get updated. In the following section we'll be covering how to do just that using Circle CI, a popular continuous integration service provider.
Using Circle CI 2.0
publish-gh-pages
script as part of the deployment step. You can follow the steps below to get that setup.
GIT_USER
has write
access to the repository that contains the documentation, by checking Settings | Collaborators & teams
in the repository.GIT_USER
.GIT_USER
and generate a new personal access token, granting it full control of private repositories through the repository
access scope. Store this token in a safe place, making sure to not share it with anyone. This token can be used to authenticate GitHub actions on your behalf in place of your GitHub password.GITHUB_TOKEN
, using your newly generated access token as the value..circleci
directory and create a config.yml
under that directory..circleci/config.yml
.# If you only want circle to run on direct commits to master, you can uncomment this out
# and uncomment the filters: *filter-only-master down below too
#
# aliases:
# - &filter-only-master
# branches:
# only:
# - master
version: 2
jobs:
deploy-website:
docker:
# specify the version you desire here
- image: circleci/node:8.11.1
steps:
- checkout
- run:
name: Deploying to GitHub Pages
command: |
git config --global user.email "<GITHUB_USERNAME>@users.noreply.github.com"
git config --global user.name "<YOUR_NAME>"
echo "machine github.com login <GITHUB_USERNAME> password $GITHUB_TOKEN" > ~/.netrc
cd website && yarn install && GIT_USER=<GIT_USER> yarn run publish-gh-pages
workflows:
version: 2
build_and_deploy:
jobs:
- deploy-website:
# filters: *filter-only-master
<....>
in the command:
sequence with appropriate values. For <GIT_USER>
, it should be a GitHub account that has access to push documentation to your GitHub repository. Many times <GIT_USER>
and <GITHUB_USERNAME>
will be the same.$GITHUB_TOKEN
in circle.yml
. We already configured that as an environment variable back in Step 3.
USE_SSH=true
. So the above command would look something like: cd website && npm install && GIT_USER=<GIT_USER> USE_SSH=true npm run publish-gh-pages
.publish-gh-pages
script manually, when the script runs within the Circle environment, the value of CURRENT_BRANCH
is already defined as an environment variable within CircleCI and will be picked up by the script automatically.master
, CircleCI will run your suite of tests and, if everything passes, your website will be deployed via the publish-gh-pages
script.
Tips & Tricks
gh-pages
branch using Circle CI, you may notice that some jobs triggered by commits to the gh-pages
branch fail to run successfully due to a lack of tests. You can easily work around this by creating a basic Circle CI config with the following contents:# Circle CI 2.0 Config File
# This config file will prevent tests from being run on the gh-pages branch.
version: 2
jobs:
build:
machine: true
branches:
ignore: gh-pages
steps:
- run: echo "Skipping tests on gh-pages branch"
config.yml
and place it in a .circleci
directory inside your website/static
directory.
Using Travis CI
More options
> Setting
> Environment Variables
section of your repository.GH_TOKEN
with your newly generated token as its value, then GH_EMAIL
(your email address) and GH_NAME
(your GitHub username)..travis.yml
on the root of your repository with below text.# .travis.yml
language: node_js
node_js:
- '8'
branches:
only:
- master
cache:
yarn: true
script:
- git config --global user.name "${GH_NAME}"
- git config --global user.email "${GH_EMAIL}"
- echo "machine github.com login ${GH_NAME} password ${GH_TOKEN}" > ~/.netrc
- cd website && yarn install && GIT_USER="${GH_NAME}" yarn run publish-gh-pages
master
, Travis CI will run your suite of tests and, if everything passes, your website will be deployed via the publish-gh-pages
script.
Hosting on Netlify
master
cd website; npm install; npm run build;
website/build/<projectName>
(use the projectName
from your siteConfig
)master
branch commits.
Publishing to GitHub Enterprise
Name Description GITHUB_HOST
The hostname for the GitHub enterprise server. siteConfig.js
to add a property 'githubHost'
which represents the GitHub Enterprise hostname. Alternatively, set an environment variable GITHUB_HOST
when executing the publish command.