init mdbook

Signed-off-by: xermicus <cyrill@parity.io>
This commit is contained in:
xermicus
2024-06-08 16:41:40 +02:00
parent 10c7045e15
commit 0d39b289cb
16 changed files with 44 additions and 2 deletions
+2 -1
View File
@@ -11,4 +11,5 @@
node_modules
artifacts
tmp
package-lock.json
package-lock.json
/*.html
+7 -1
View File
@@ -1,4 +1,4 @@
.PHONY: install format test test-solidity test-cli test-integration test-workspace clean
.PHONY: install format test test-solidity test-cli test-integration test-workspace clean docs docs-build
install: install-bin install-npm
@@ -48,6 +48,12 @@ bench: install-bin
clippy:
cargo clippy --all-features --workspace --tests --benches
docs: docs-build
mdbook serve --open docs/
docs-build:
mdbook test docs/ && mdbook build docs/
clean:
cargo clean ; \
rm -rf node_modules ; \
+1
View File
@@ -0,0 +1 @@
book
+6
View File
@@ -0,0 +1,6 @@
[book]
authors = ["Cyrill Leutwiler <cyrill@parity.io>"]
language = "en"
multilingual = false
src = "src"
title = "revive documentation"
+3
View File
@@ -0,0 +1,3 @@
# revive documentation
Welcome to the revive Solidty compiler documentation!
+13
View File
@@ -0,0 +1,13 @@
# Summary
[Introduction](README.md)
- [User guide](./user-guide.md)
- [Installation](./installation.md)
- [CLI guide](./cli.md)
- [Hardhat integration](./hardhat.md)
- [Architecture](./architecture.md)
- [Overview](./overview.md)
- [Runtime](./runtime.md)
- [Differences from EVM](./differences-evm.md)
- [Development](./development.md)
+1
View File
@@ -0,0 +1 @@
# Architecture
+1
View File
@@ -0,0 +1 @@
# CLI guide
+1
View File
@@ -0,0 +1 @@
# Development
+1
View File
@@ -0,0 +1 @@
# Differences from EVM
+1
View File
@@ -0,0 +1 @@
# Differences from EVM
+1
View File
@@ -0,0 +1 @@
# Hardhat integration
+1
View File
@@ -0,0 +1 @@
# Installation
+1
View File
@@ -0,0 +1 @@
# Overview
+3
View File
@@ -0,0 +1,3 @@
# Runtime
revive compiled contract target the new contracts pallet runtime environment API.
+1
View File
@@ -0,0 +1 @@
# User guide