-
Install
rustup
:curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
-
Install
Dioxus CLI
:cargo install dioxus-cli
-
Download and install
rustup
: Follow the installation instructions here. -
Install Windows Subsystem for Linux (WSL): Open PowerShell as administrator and run:
wsl --install
-
Reset Network Stack: In PowerShell (administrator mode), run:
netsh int ip reset all netsh winsock reset
-
Install Linux packages in WSL: Once inside your WSL terminal, update and install required dependencies:
sudo apt update sudo apt install build-essential pkg-config libudev-dev
-
Install
Dioxus CLI
:cargo install dioxus-cli
-
Fork/Clone the GitHub repository.
git clone https://github.com/opensass/eld
-
Navigate to the application directory.
cd eld/examples/dioxus
-
Run the client:
dx serve --port 3000
Navigate to http://localhost:3000 to explore the landing page.