Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,11 @@ docker build -t prototype-chain .
# run chain in dev mode locally
docker run -p 9944:9944 prototype-chain ./target/debug/node --dev --ws-port 9944 --ws-external --rpc-external
```

### Running a node in an alternative way (without Docker)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Without docker you also have to setup your environment first (rustup, cargo, etc).
Can you add these steps as prerequisites?

```
1. ./init.sh
2. ./build.sh
3. cargo build
4. ./target/debug/node --dev -d ./tmp
```