maztak / developer-docs

Source for https://aptos.dev

Home Page:https://developer-docs-nextra.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Developer Documentation

Visit the README.md under apps/docusaurus for more steps on building / developing in this repo

We now use lychee-broken-link-checker to check for broken links in the GitHub Markdown. We use a corresponding link checker for pages on Aptos.dev.

With results visible at: https://github.com//aptos-labs/developer-docs/actions/workflows/links.yml

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 pnpm by executing the below command on your Terminal:
curl -fsSL https://get.pnpm.io/install.sh | sh -

Clone the Developer docs repo

git clone https://github.com/aptos-labs/developer-docs.git

Build and serve the docs locally

  1. Run pnpm.
pnpm install

This step will configure the Docusaurus static site generator.

  1. Start the 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.

pnpm start
  1. See your changes staged at: http://localhost:3000/

  2. Create a pull request with your changes as described in our Contributing README.

(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 dependencies.
pnpm install
  1. Build static html files with pnpm.
pnpm 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.
pnpm run serve

Debugging

Fix formatting issues by running:

pnpm fmt

Regenerating contributors

The src/contributors.json file (which powers the list of Authors at the bottom of doc pages) needs to be manually generated.

In order to generate the contributor map you must authenticate with GitHub. The best way to do that is using GitHub CLI ([installation guide(https://github.com/cli/cli#installation)]). Once you have the GitHub CLI installed, you can run the following command to authenticate:

gh auth login --scopes read:user,user:email

Once that is done, you can generate the map with this command:

pnpm contributors

About

Source for https://aptos.dev

https://developer-docs-nextra.vercel.app

License:Apache License 2.0


Languages

Language:Move 63.0%Language:Python 12.6%Language:TypeScript 11.8%Language:MDX 4.1%Language:HTML 2.9%Language:CSS 2.9%Language:Rust 1.7%Language:Shell 0.6%Language:JavaScript 0.5%Language:Makefile 0.0%