Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: curio docker devnet #727

Merged
merged 3 commits into from
May 8, 2024
Merged
Changes from 2 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
28 changes: 28 additions & 0 deletions content/en/storage-providers/curio/local-network.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,34 @@ weight: 140
---
A local-network is highly useful for getting familiar with Curio and experimenting with different scenarios in a safe manner.

## Docker Devnet

1. Clone the Lotus Github repo and checkout the `release/cuio-beta` branch

```shell
git clone https://github.com/filecoin-project/lotus.git
cd lotus/
git checkout release/curio-beta
```

2. Build the images
```shell
make docker/curio-devnet
```

3. Start the docker devnet
```shell
make curio-devnet/up
```

4. Stop the docker devnet

```shell
make curio-devnet/down
```


## Devnet
1. Please set up a [local network using the Lotus binaries]({{<relref "../../lotus/developers/local-network/">}}).
2. [Build the `curio` binaries from "master" branch of the Lotus repo]({{< relref "install" >}}).
3. Set up the [YugabyteDB]({{< relref "setup#setup-yugabytedb" >}})
Expand Down