Skip to content

Commit cb88a00

Browse files
committed
Website: remove mentions of frontend docker image needing work
The frontend docker image has been revamped and is now fully functional. Removed all mentions from the documentation indicating it was being updated or might not work as expected. Fixes: #1399 Changes: - Removed frontend status warnings from docker-usage.md - Removed frontend status note from block-producer.md - Cleaned up trailing whitespace in circuit_blobs.rs
1 parent 8f7eef7 commit cb88a00

File tree

3 files changed

+2
-42
lines changed

3 files changed

+2
-42
lines changed

ledger/src/proofs/circuit_blobs.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,6 @@ pub async fn fetch(filename: &impl AsRef<Path>) -> std::io::Result<Vec<u8>> {
191191
option_env!("CIRCUIT_BLOBS_HTTP_PREFIX").unwrap_or("/assets/webnode/circuit-blobs");
192192
let url = format!("{prefix}/{}", filename.as_ref().to_str().unwrap());
193193
mina_core::http::get_bytes(&url).await
194-
// http::get_bytes(&git_release_url(filename)).await
195194
}
196195

197196
#[cfg(target_family = "wasm")]

website/docs/node-operators/block-producer.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -145,20 +145,6 @@ Ensure Docker and Docker Compose are installed on your system -
145145
Visit [http://localhost:8070](http://localhost:8070) to monitor sync and
146146
block production.
147147

148-
<!-- prettier-ignore-start -->
149-
150-
:::note Frontend Status
151-
152-
The dashboard is currently being updated and may not work correctly in
153-
v0.17.0. As an alternative, monitor your node using logs:
154-
155-
```bash
156-
docker compose logs -f
157-
```
158-
159-
:::
160-
<!-- prettier-ignore-stop -->
161-
162148
## Using Make Command
163149

164150
As an alternative to Docker Compose, you can run the block producer directly

website/docs/node-operators/docker-usage.md

Lines changed: 2 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -91,18 +91,6 @@ You can find available tags at:
9191
- [o1labs/mina-rust on Docker Hub](https://hub.docker.com/r/o1labs/mina-rust/tags)
9292
- [o1labs/mina-rust-frontend on Docker Hub](https://hub.docker.com/r/o1labs/mina-rust-frontend/tags)
9393

94-
<!-- prettier-ignore-start -->
95-
96-
:::note Frontend Dashboard
97-
98-
The frontend dashboard is currently being updated and will be fully functional
99-
in a future release. The Docker image is available but may not work as expected
100-
in v0.17.0.
101-
102-
:::
103-
104-
<!-- prettier-ignore-stop -->
105-
10694
## Architecture Support
10795

10896
All Docker images are built natively for multiple architectures to ensure
@@ -149,7 +137,7 @@ docker run -p 8302:8302 o1labs/mina-rust:latest
149137
# Run node and web dashboard together
150138
docker run -d --name mina-rust-node -p 8302:8302 o1labs/mina-rust:latest \
151139
node --network devnet
152-
# Frontend (currently being fixed, may not work as expected)
140+
# Frontend
153141
docker run -d --name mina-frontend -p 8070:8070 o1labs/mina-rust-frontend:latest
154142
```
155143

@@ -158,18 +146,6 @@ docker run -d --name mina-frontend -p 8070:8070 o1labs/mina-rust-frontend:latest
158146
Docker Compose provides the easiest way to run both the Mina node and frontend
159147
dashboard together.
160148

161-
<!-- prettier-ignore-start -->
162-
163-
:::caution Frontend Status
164-
165-
The frontend dashboard is included in the docker-compose setup but is currently
166-
being updated. It may not function correctly in v0.17.0 and will be fully
167-
operational in a future release.
168-
169-
:::
170-
171-
<!-- prettier-ignore-stop -->
172-
173149
#### Quick Start with Release Version
174150

175151
For each release, you can directly download the docker-compose.yml file:
@@ -242,8 +218,7 @@ MINA_LIBP2P_PORT=9302 MINA_LIBP2P_EXTERNAL_IP=203.0.113.1 docker compose up -d
242218
#### What's Included
243219

244220
- **mina-rust-node**: The core Mina Rust node running on devnet
245-
- **frontend**: Web dashboard accessible at http://localhost:8070 (currently
246-
being fixed)
221+
- **frontend**: Web dashboard accessible at http://localhost:8070
247222
- **Persistent storage**: Node data stored in `./mina-workdir` directory
248223
- **Automatic networking**: Services can communicate with each other
249224

0 commit comments

Comments
 (0)