Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
xlc committed Nov 7, 2024
1 parent 65a59ff commit 68edd99
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ path = "src/main.rs"
[dependencies]
color-eyre = { version = "0.6.3", default-features = false }

# TODO: update to a released version once available
polkadot-parachain-lib = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2409" }
sc-chain-spec = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2409" }
sc-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2409" }
Expand Down
27 changes: 26 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,27 @@
# acala-node
The client node for Acala & Karura parachain

This is the client node for Acala and Karura. For runtime code, please refer to [Acala repo](https://github.com/AcalaNetwork/Acala).

# Building

```bash
curl https://sh.rustup.rs -sSf | sh
```

You may need additional dependencies, checkout [substrate.io](https://docs.substrate.io/v3/getting-started/installation) for more info

```bash
sudo apt-get install -y git clang curl make libssl-dev llvm libudev-dev protobuf-compiler
```

Debug build:

```bash
cargo build
```

Release build:

```bash
cargo build --release
```

0 comments on commit 68edd99

Please sign in to comment.