Skip to content

Commit

Permalink
deploy: dfc7f84
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwalker committed Sep 16, 2024
1 parent 8d9d2fd commit 13360f7
Show file tree
Hide file tree
Showing 114 changed files with 22,435 additions and 9,866 deletions.
1 change: 0 additions & 1 deletion .nojekyll
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
This file makes sure that Github Pages doesn't process mdBook's output.
960 changes: 745 additions & 215 deletions 404.html

Large diffs are not rendered by default.

4 changes: 0 additions & 4 deletions FontAwesome/css/font-awesome.css

This file was deleted.

Binary file removed FontAwesome/fonts/FontAwesome.ttf
Binary file not shown.
Binary file removed FontAwesome/fonts/fontawesome-webfont.eot
Binary file not shown.
2,671 changes: 0 additions & 2,671 deletions FontAwesome/fonts/fontawesome-webfont.svg

This file was deleted.

Binary file removed FontAwesome/fonts/fontawesome-webfont.ttf
Binary file not shown.
Binary file removed FontAwesome/fonts/fontawesome-webfont.woff
Binary file not shown.
Binary file removed FontAwesome/fonts/fontawesome-webfont.woff2
Binary file not shown.
38 changes: 38 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Miden Compiler Docs

This directory contains the sources for the [Miden Compiler Documentation](https://docs.polygon.technology/miden/compiler/).).

All doc files are written in Markdown, and are converted into an online book using [mkdocs](https://squidfunk.github.io/mkdocs-material/).

## Building the docs

You can build and view the documentation using two different methods, depending on whether or not
you have `cargo` installed.

**NOTE:** Both methods described below are expected to be run from the root of the compiler project.

### Using `cargo`

To build the docs, use `cargo make docs`. This will place the build output in the `target/docs/site`
directory.

If you wish to build the docs _and_ run a server to view them, which will reload when changes are
made, use `cargo make serve-docs`. The hostname and port will be displayed in the terminal, but by
default the docs should be available at `http://127.0.0.1:8000`.

### Using `mkdocs` script

If you don't have `cargo` installed, you can use this method instead. Again, the commands below are
written with the current working directory being the root of the compiler project, _not_ this
directory.

To build the docs, use `docs/mkdocs build -d target/docs/site`. This matches the behavior of the
`cargo make docs` command.

To view the docs in your browser, with reload on change enabled, use `docs/mkdocs serve`. The
hostname and port where the docs can be viewed will be printed to the terminal, but by default this
is `http://127.0.0.1:8000`.

## License

MIT
Loading

0 comments on commit 13360f7

Please sign in to comment.