An open API service indexing awesome lists of open source software.

https://github.com/gregnazario/aptos-book

The Aptos Book - A one stop reference for Aptos
https://github.com/gregnazario/aptos-book

aptos aptos-move documentation move

Last synced: 4 months ago
JSON representation

The Aptos Book - A one stop reference for Aptos

Awesome Lists containing this project

README

          

# Aptos Book

The Aptos Book - A one-stop reference for Aptos.

## Setup

### Option 1: Using Mise (recommended)

This project uses [Mise](https://mise.jdx.dev/) to manage development tools and dependencies.

1. Install [Mise](https://mise.jdx.dev/getting-started.html).
2. Run the setup script:
```bash
./scripts/setup-mise.sh
```
3. Build, serve, or clean the book with Mise:
```bash
mise run build # Build the book
mise run serve # Serve the book locally
mise run watch # Watch for changes and rebuild
mise run clean # Clean build artifacts
```

### Option 2: Traditional setup

1. Install [Rust](https://rustup.rs/).
2. Run the setup script:
```bash
./scripts/setup.sh
```
3. Use mdBook commands directly:
```bash
mdbook build
mdbook serve
mdbook watch
mdbook clean
```