Skip to content

Commit bfad7d6

Browse files
committed
feat: update landing image
1 parent 56822e6 commit bfad7d6

File tree

50 files changed

+89
-89
lines changed

Some content is hidden

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

50 files changed

+89
-89
lines changed

assets/images/interface-v0.0.1.png

360 KB
Loading

content/docs/installation/install-on-linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ docker rm bdiviz
140140
## Troubleshooting
141141
- **Port already in use?** Try using a different port:
142142
```bash
143-
docker run -d --name bdiviz-mac -p 8080:3000 edenwu/bdi-viz-react:arm64
143+
docker run -d --name bdiviz-mac -p 8080:3000 edenwu/bdi-viz-react:amd64
144144
```
145145
Then access it at http://localhost:8080.
146146
- **Docker daemon not running?** Open Docker Desktop and make sure it's active.

content/docs/installation/install-on-macos.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ docker rm bdiviz
8787
- You can bind-mount local volumes or customize environment variables for advanced use (e.g., persistent storage, configuration injection).
8888
- To update the image, simply pull the latest tag again and restart the container:
8989
```bash
90-
docker pull edenwu/bdi-viz-react:amd64
90+
docker pull edenwu/bdi-viz-react:arm64
9191
docker stop bdiviz && docker rm bdiviz
92-
docker run -d --name bdiviz -p 3000:3000 edenwu/bdi-viz-react:amd64
92+
docker run -d --name bdiviz -p 3000:3000 edenwu/bdi-viz-react:arm64
9393
```
9494

9595
## Troubleshooting

data/landing.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ hero:
2828

2929
image:
3030
path: "/images" # path to image under configured assets directory. default 'images'
31-
filename: "bdiviz-screenshot.png" # filename of your hero image (including file extension)
31+
filename: "interface-v0.0.1.png" # filename of your hero image (including file extension)
3232
alt: "BDIViz Screenshot" # Optional but recommended
3333
boxShadow: true # default 'false' (excludes .svg images)
3434
rounded: true # round the image corners? default 'false' (excludes .svg images)

public/docs/get-started/dataset-to-gdc/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -898,7 +898,7 @@ <h2 id="further-resources-">Further Resources 📖 <a href="#further-resources-"
898898
href: "\/bdi-viz-manual\/docs\/installation\/install-on-linux\/",
899899
title: "Install on Linux/Unix",
900900
description: "Step-by-step guide for installing and configuring BDIViz on Linux and Unix-based systems",
901-
content: "Prerequisites linkBefore installing BDIViz on your Linux system, ensure you have the following prerequisites:\nA Linux distribution (Ubuntu, Debian, CentOS, etc.) with amd64 architecture Docker Engine installed and running (version 19.03 or later) At least 4GB of RAM and 10GB of free disk space Internet connection to pull the Docker image Install Docker (if not already installed) linkIf you don’t have Docker installed, follow these steps to install it:\nUbuntu/Debian CentOS/RHEL Arch Linux sudo apt update sudo apt install \\ ca-certificates \\ curl \\ gnupg \\ lsb-release sudo mkdir -p /etc/apt/keyrings curl -fsSL https://download.docker.com/linux/ubuntu/gpg | \\ sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg echo \\ \"deb [arch=$(dpkg --print-architecture) \\ signed-by=/etc/apt/keyrings/docker.gpg] \\ https://download.docker.com/linux/ubuntu \\ $(lsb_release -cs) stable\" | \\ sudo tee /etc/apt/sources.list.d/docker.list \u003e /dev/null sudo apt update sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin sudo systemctl enable docker sudo systemctl start docker sudo yum install -y yum-utils sudo yum-config-manager \\ --add-repo https://download.docker.com/linux/centos/docker-ce.repo sudo yum install docker-ce docker-ce-cli containerd.io docker-compose-plugin sudo systemctl enable docker sudo systemctl start docker sudo pacman -Syu sudo pacman -S docker sudo systemctl enable docker sudo systemctl start docker Run BDIViz Using Docker linkOnce Docker is installed and running, follow these steps to run BDIViz using the edenwu/bdi-viz-react:amd64 image:\n1. Pull the Docker image link docker pull edenwu/bdi-viz-react:amd64 2. Run the container link docker run -d \\ --name bdiviz \\ -p 3000:3000 \\ edenwu/bdi-viz-react:amd64 This will start the BDIViz container in detached mode and expose the web application at http://localhost:3000.\n3. Verify the container is running linkYou can verify the container is up using:\ndocker ps If everything is working correctly, you should see bdiviz listed in the output.\n4. Stop the container linkWhen you’re done, you can stop the container with:\ndocker stop bdiviz And if needed, remove it:\ndocker rm bdiviz Note link Make sure port 3000 is available on your host machine. You can bind-mount local volumes or customize environment variables for advanced use (e.g., persistent storage, configuration injection). To update the image, simply pull the latest tag again and restart the container: docker pull edenwu/bdi-viz-react:amd64 docker stop bdiviz \u0026\u0026 docker rm bdiviz docker run -d --name bdiviz -p 3000:3000 edenwu/bdi-viz-react:amd64 Troubleshooting link Port already in use? Try using a different port: docker run -d --name bdiviz-mac -p 8080:3000 edenwu/bdi-viz-react:arm64 Then access it at http://localhost:8080. Docker daemon not running? Open Docker Desktop and make sure it’s active. Still stuck? Feel free to reach out or open an issue on the GitHub repository. "
901+
content: "Prerequisites linkBefore installing BDIViz on your Linux system, ensure you have the following prerequisites:\nA Linux distribution (Ubuntu, Debian, CentOS, etc.) with amd64 architecture Docker Engine installed and running (version 19.03 or later) At least 4GB of RAM and 10GB of free disk space Internet connection to pull the Docker image Install Docker (if not already installed) linkIf you don’t have Docker installed, follow these steps to install it:\nUbuntu/Debian CentOS/RHEL Arch Linux sudo apt update sudo apt install \\ ca-certificates \\ curl \\ gnupg \\ lsb-release sudo mkdir -p /etc/apt/keyrings curl -fsSL https://download.docker.com/linux/ubuntu/gpg | \\ sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg echo \\ \"deb [arch=$(dpkg --print-architecture) \\ signed-by=/etc/apt/keyrings/docker.gpg] \\ https://download.docker.com/linux/ubuntu \\ $(lsb_release -cs) stable\" | \\ sudo tee /etc/apt/sources.list.d/docker.list \u003e /dev/null sudo apt update sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin sudo systemctl enable docker sudo systemctl start docker sudo yum install -y yum-utils sudo yum-config-manager \\ --add-repo https://download.docker.com/linux/centos/docker-ce.repo sudo yum install docker-ce docker-ce-cli containerd.io docker-compose-plugin sudo systemctl enable docker sudo systemctl start docker sudo pacman -Syu sudo pacman -S docker sudo systemctl enable docker sudo systemctl start docker Run BDIViz Using Docker linkOnce Docker is installed and running, follow these steps to run BDIViz using the edenwu/bdi-viz-react:amd64 image:\n1. Pull the Docker image link docker pull edenwu/bdi-viz-react:amd64 2. Run the container link docker run -d \\ --name bdiviz \\ -p 3000:3000 \\ edenwu/bdi-viz-react:amd64 This will start the BDIViz container in detached mode and expose the web application at http://localhost:3000.\n3. Verify the container is running linkYou can verify the container is up using:\ndocker ps If everything is working correctly, you should see bdiviz listed in the output.\n4. Stop the container linkWhen you’re done, you can stop the container with:\ndocker stop bdiviz And if needed, remove it:\ndocker rm bdiviz Note link Make sure port 3000 is available on your host machine. You can bind-mount local volumes or customize environment variables for advanced use (e.g., persistent storage, configuration injection). To update the image, simply pull the latest tag again and restart the container: docker pull edenwu/bdi-viz-react:amd64 docker stop bdiviz \u0026\u0026 docker rm bdiviz docker run -d --name bdiviz -p 3000:3000 edenwu/bdi-viz-react:amd64 Troubleshooting link Port already in use? Try using a different port: docker run -d --name bdiviz-mac -p 8080:3000 edenwu/bdi-viz-react:amd64 Then access it at http://localhost:8080. Docker daemon not running? Open Docker Desktop and make sure it’s active. Still stuck? Feel free to reach out or open an issue on the GitHub repository. "
902902
}
903903
);
904904
index.add(
@@ -907,7 +907,7 @@ <h2 id="further-resources-">Further Resources 📖 <a href="#further-resources-"
907907
href: "\/bdi-viz-manual\/docs\/installation\/install-on-macos\/",
908908
title: "Install on MacOS",
909909
description: "Step-by-step guide for installing and configuring BDIViz on MacOS(ARM64) systems",
910-
content: "Prerequisites linkBefore setting up BDIViz on your Mac, ensure your system meets the following requirements:\nMac computer with Apple Silicon (M1, M2, M3, etc.) – ARM64 architecture macOS 12.0 Monterey or later Docker Desktop for Mac (ARM64 version) At least 4GB of RAM and 10GB of free disk space Internet connection to pull the Docker image Install Docker Desktop for Mac link Download Docker Desktop for Mac (Apple Silicon): 👉 https://www.docker.com/products/docker-desktop/\nOpen the downloaded .dmg file and drag Docker to your Applications folder.\nLaunch Docker Desktop from Spotlight or Applications.\nGrant permissions if prompted and wait for Docker to start (you should see the Docker icon in the menu bar).\nOpen Terminal and verify installation:\ndocker --version You should see an output like:\nDocker version 24.0.0, build xxxxxxxx Run BDIViz Using Docker link1. Pull the Docker image link docker pull edenwu/bdi-viz-react:arm64 2. Run the container link docker run -d \\ --name bdiviz \\ -p 3000:3000 \\ edenwu/bdi-viz-react:arm64 This will start the BDIViz container in detached mode and expose the web application at http://localhost:3000.\n3. Verify the container is running linkYou can verify the container is up using:\ndocker ps If everything is working correctly, you should see bdiviz listed in the output.\n4. Stop the container linkWhen you’re done, you can stop the container with:\ndocker stop bdiviz And if needed, remove it:\ndocker rm bdiviz Note link Make sure port 3000 is available on your host machine. You can bind-mount local volumes or customize environment variables for advanced use (e.g., persistent storage, configuration injection). To update the image, simply pull the latest tag again and restart the container: docker pull edenwu/bdi-viz-react:amd64 docker stop bdiviz \u0026\u0026 docker rm bdiviz docker run -d --name bdiviz -p 3000:3000 edenwu/bdi-viz-react:amd64 Troubleshooting link Port already in use? Try using a different port: docker run -d --name bdiviz-mac -p 8080:3000 edenwu/bdi-viz-react:arm64 Then access it at http://localhost:8080. Docker daemon not running? Open Docker Desktop and make sure it’s active. Still stuck? Feel free to reach out or open an issue on the GitHub repository. "
910+
content: "Prerequisites linkBefore setting up BDIViz on your Mac, ensure your system meets the following requirements:\nMac computer with Apple Silicon (M1, M2, M3, etc.) – ARM64 architecture macOS 12.0 Monterey or later Docker Desktop for Mac (ARM64 version) At least 4GB of RAM and 10GB of free disk space Internet connection to pull the Docker image Install Docker Desktop for Mac link Download Docker Desktop for Mac (Apple Silicon): 👉 https://www.docker.com/products/docker-desktop/\nOpen the downloaded .dmg file and drag Docker to your Applications folder.\nLaunch Docker Desktop from Spotlight or Applications.\nGrant permissions if prompted and wait for Docker to start (you should see the Docker icon in the menu bar).\nOpen Terminal and verify installation:\ndocker --version You should see an output like:\nDocker version 24.0.0, build xxxxxxxx Run BDIViz Using Docker link1. Pull the Docker image link docker pull edenwu/bdi-viz-react:arm64 2. Run the container link docker run -d \\ --name bdiviz \\ -p 3000:3000 \\ edenwu/bdi-viz-react:arm64 This will start the BDIViz container in detached mode and expose the web application at http://localhost:3000.\n3. Verify the container is running linkYou can verify the container is up using:\ndocker ps If everything is working correctly, you should see bdiviz listed in the output.\n4. Stop the container linkWhen you’re done, you can stop the container with:\ndocker stop bdiviz And if needed, remove it:\ndocker rm bdiviz Note link Make sure port 3000 is available on your host machine. You can bind-mount local volumes or customize environment variables for advanced use (e.g., persistent storage, configuration injection). To update the image, simply pull the latest tag again and restart the container: docker pull edenwu/bdi-viz-react:arm64 docker stop bdiviz \u0026\u0026 docker rm bdiviz docker run -d --name bdiviz -p 3000:3000 edenwu/bdi-viz-react:arm64 Troubleshooting link Port already in use? Try using a different port: docker run -d --name bdiviz-mac -p 8080:3000 edenwu/bdi-viz-react:arm64 Then access it at http://localhost:8080. Docker daemon not running? Open Docker Desktop and make sure it’s active. Still stuck? Feel free to reach out or open an issue on the GitHub repository. "
911911
}
912912
);
913913
index.add(

0 commit comments

Comments
 (0)