-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
133a2f2
commit c4f9e3e
Showing
4 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,6 +67,9 @@ | |
], | ||
"ignoreWords": [ | ||
"Hildr", | ||
"Superproof", | ||
"Shisui", | ||
"Flashbots", | ||
"meili", | ||
"Linea" | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# blob-archiver-rs | ||
This is a Rust implementation of | ||
the [Beacon Chain blob archiver](https://github.com/base-org/blob-archiver) | ||
|
||
### Development | ||
```sh | ||
# Run the tests | ||
cargo test --workspace --all-features --all-targets --locked | ||
|
||
# Lint the project | ||
cargo clippy --workspace --all-targets --all-features -- -D warnings | ||
|
||
# Build the project | ||
cargo build --workspace --all-targets --all-features | ||
|
||
``` | ||
|
||
#### Run Locally | ||
To run the project locally, you should first copy `.env.template` to `.env` and then modify the environment variables | ||
to your beacon client and storage backend of choice. Then you can run the project with: | ||
|
||
```sh | ||
docker compose up | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,6 +62,9 @@ const sidebars = { | |
], | ||
}, | ||
], | ||
blobArchiverRs: [ | ||
"blob-archiver-rs-docs/index", | ||
], | ||
}; | ||
|
||
module.exports = sidebars; |