serai/docs/Getting Started.md

93 lines
1.7 KiB
Markdown
Raw Normal View History

# Getting Started
2023-03-25 05:44:07 +00:00
### Dependencies
##### Ubuntu
```
2022-10-31 16:10:13 +00:00
sudo apt-get install -y build-essential cmake clang-11 git curl python3-pip protobuf-compiler libssl-dev pkg-config
```
### Install rustup
##### Linux
```
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
```
##### macOS
```
brew install rustup
```
### Install Rust
```
rustup update
2023-03-25 05:44:07 +00:00
rustup toolchain install stable
rustup target add wasm32-unknown-unknown
rustup toolchain install nightly
rustup target add wasm32-unknown-unknown --toolchain nightly
```
### Install Solidity
```
sudo pip3 install solc-select
solc-select install 0.8.16
solc-select use 0.8.16
```
### Install Solidity Compiler Version Manager
```
cargo install svm-rs
svm install 0.8.16
svm use 0.8.16
```
### Install foundry and anvil (for tests)
```
cargo install --git https://github.com/foundry-rs/foundry --profile local --locked foundry-cli anvil
```
### Clone and Build Serai
```
git clone https://github.com/serai-dex/serai
cd serai
cargo build --release --all-features
```
### Run Tests
2023-03-25 05:44:07 +00:00
Running tests requires:
- A properly configured Bitcoin regtest node (available via Docker)
- A properly configured Monero regtest node (available via Docker)
- A properly configured monero-wallet-rpc instance
- A debug Serai node (`cd substrate/node && cargo build`)
```
cargo test --all-features
```
### Run Serai in Development Mode
```
./target/release/serai-node --dev
```
2023-03-25 05:44:07 +00:00
### Run Serai with Orchestration
2023-03-25 05:44:07 +00:00
Under `/deploy`, you can find our orchestration components for running the
entire infrastructure of Serai in a local environment using Docker Compose or
Kubernetes.
[Run Serai with Docker Compose](../deploy/README.md)
[Run Serai with Kubernetes](../deploy/kubernetes/README.md)