Skip to content
This repository was archived by the owner on Sep 1, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions makes/docs/dev/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# SPDX-FileCopyrightText: 2022 Fluid Attacks and Makes contributors
#
# SPDX-License-Identifier: MIT

# shellcheck shell=bash

mdbook-mermaid install docs/
mdbook serve docs
16 changes: 16 additions & 0 deletions makes/docs/dev/main.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# SPDX-FileCopyrightText: 2022 Fluid Attacks and Makes contributors
#
# SPDX-License-Identifier: MIT
{
inputs,
makeScript,
...
}:
makeScript {
name = "docs-dev";
entrypoint = ./entrypoint.sh;
searchPaths.bin = [
inputs.nixpkgs.mdbook
inputs.nixpkgs.mdbook-mermaid
];
}