add Installing Documentation (#384)

This commit is contained in:
dome
2022-12-12 23:32:44 +07:00
committed by GitHub
parent b7dadbe422
commit ef487a35b0
2 changed files with 28 additions and 1 deletions

View File

@ -4,3 +4,4 @@ This directory contains documentation for contributors.
- [Repository and Project Structure](./repo)
- [Design](./design)
- [Installation](./installation)

View File

@ -0,0 +1,26 @@
## Installation
(still WIP, please contribute!):
### Ubuntu
Building the source
* install rustup
```bash
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
* install Requirements
- libclang-dev
- pkg-config
```bash
apt install libclang-dev pkg-config
* Build reth
```bash
git clone https://github.com/paradigmxyz/reth
cd reth
cargo build --all
./target/debug/reth
```
### Docker
-
-