fabric-docs-i18n
fabric-docs-i18n copied to clipboard
[ja_JP] Contributions Welcome! / Building Hyperledger Fabric
Original HTML: https://hyperledger-fabric.readthedocs.io/en/release-2.5/dev-setup/build.html Original Source: https://github.com/hyperledger/fabric/blob/e1e8e2e52aa4fc543360d245fe6554a0eaf81183/docs/source/dev-setup/build.rst
diff --git a/docs/source/dev-setup/build.rst b/docs/source/dev-setup/build.rst
index 429e3827e..9593fd34d 100644
--- a/docs/source/dev-setup/build.rst
+++ b/docs/source/dev-setup/build.rst
@@ -20,18 +20,15 @@ of your changes using your web browser before you open a pull request.
You need to download the following prerequisites before you can build the
documentation:
-- `Python 3.7 <https://wiki.python.org/moin/BeginnersGuide/Download>`__
-- `Pipenv <https://pipenv.readthedocs.io/en/latest/#install-pipenv-today>`__
+- `Docker <https://docs.docker.com/get-docker/>`__
After you make your updates to the documentation source files, you can generate
a build that includes your changes by running the following commands:
::
- cd fabric/docs
- pipenv install
- pipenv shell
- make html
+ cd fabric
+ make docs
This will generate all the html files in the ``docs/build/html`` folder. You can
open any file to start browsing the updated documentation using your browser. If you
@@ -72,7 +69,7 @@ Running Node.js Client SDK Unit Tests
You must also run the Node.js unit tests to ensure that the Node.js
client SDK is not broken by your changes. To run the Node.js unit tests,
follow the instructions
-`here <https://github.com/hyperledger/fabric-sdk-node/blob/master/README.md>`__.
+`here <https://github.com/hyperledger/fabric-sdk-node/blob/main/README.md>`__.
Configuration
-------------