Skip to content

Commit e5dae6e

Browse files
committed
chore: cleanup (#215)
1 parent c26b05f commit e5dae6e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+104
-100
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI fmt clippy and test
1+
name: CI
22

33
on:
44
pull_request:
@@ -33,4 +33,4 @@ jobs:
3333
uses: actions/checkout@v4
3434
- name: Install stable toolchain
3535
uses: dtolnay/rust-toolchain@stable
36-
- run: cargo test --all-features
36+
- run: cargo test --all-features

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Deploy Docs to GitHub Pages
1+
name: Docs
22

33
on:
44
push:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
ghcr.io/commit-boost/pbs:latest
133133
cache-from: type=registry,ref=ghcr.io/commit-boost/pbs:buildcache
134134
cache-to: type=registry,ref=ghcr.io/commit-boost/pbs:buildcache,mode=max
135-
file: docker/pbs.Dockerfile
135+
file: provisioning/pbs.Dockerfile
136136

137137
build-and-push-signer-docker:
138138
runs-on: ubuntu-latest
@@ -166,7 +166,7 @@ jobs:
166166
ghcr.io/commit-boost/signer:latest
167167
cache-from: type=registry,ref=ghcr.io/commit-boost/signer:buildcache
168168
cache-to: type=registry,ref=ghcr.io/commit-boost/signer:buildcache,mode=max
169-
file: docker/signer.Dockerfile
169+
file: provisioning/signer.Dockerfile
170170

171171
finalize-release:
172172
needs:

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ target/
1313
cb.docker-compose.yml
1414
targets.json
1515
.idea/
16-
logs
16+
logs
17+
.vscode/

.vscode/settings.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 39 additions & 0 deletions

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ members = [
1010

1111
"tests",
1212
"benches/*",
13-
"examples/*",
13+
"examples/builder_log",
14+
"examples/da_commit",
15+
"examples/status_api",
1416
]
1517
resolver = "2"
1618

README.md

Lines changed: 10 additions & 56 deletions

benches/pbs/README.md

Lines changed: 1 addition & 1 deletion

bin/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use clap::Parser;
22

3-
/// Main entry point of the Commit Boost CLI
3+
/// Main entry point of the Commit-Boost CLI
44
#[tokio::main]
55
async fn main() -> eyre::Result<()> {
66
color_eyre::install()?;

0 commit comments

Comments
 (0)