Skip to content

Latest commit

 

History

History

developer-docs-site

Developer Documentation

This Aptos Developer Documenatation is built using Docusaurus 2. Follow the below steps to build the docs locally to test your contribution.

Installation

IMPORTANT: These installation steps apply to macOS environment.

Requirements

Before you proceed, make sure you install the following tools.

  • Install Node.js by executing the below command on your Terminal:
brew install node
  • Install the latest Yarn by executing the below command on your Terminal:
brew install yarn

Clone the Aptos repo

git clone https://github.com/aptos-labs/aptos-core.git

Build and serve the docs locally

  1. cd into the developer-docs-site directory in your clone.
cd aptos-core/developer-docs-site
  1. Run yarn.
yarn

This step will configure the Docusaurus static site generator.

  1. Start the Yarn server locally. This will also open the locally built docs in your default browser.

NOTE: This step will not generate static html files, but will render the docs dynamically.

yarn start

(Optional) Build static html files

Execute the below steps if you want to generate static html documentation files. A build directory will be created with the static html files and assets contained in it.

  1. Make sure you install Yarn dependencies.
yarn install
  1. Build static html files with Yarn.
$ yarn build

This command generates static html content and places it in the build directory.

  1. Finally, use the below command to start the documentation server on your localhost.
npm run serve