Skip to content

Files

Failed to load latest commit information.

Latest commit

 Cannot retrieve latest commit at this time.

History

History

dioxus

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

πŸ“š ELD Dioxus Example

πŸ› οΈ Pre-requisites:

🐧 Linux Users

  1. Install rustup:

    curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
  2. Install Dioxus CLI:

    cargo install dioxus-cli

πŸͺŸ Windows Users

  1. Download and install rustup: Follow the installation instructions here.

  2. Install Windows Subsystem for Linux (WSL): Open PowerShell as administrator and run:

    wsl --install
  3. Reset Network Stack: In PowerShell (administrator mode), run:

    netsh int ip reset all
    netsh winsock reset
  4. 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
  5. Install Dioxus CLI:

    cargo install dioxus-cli

πŸš€ Building and Running

  1. Fork/Clone the GitHub repository.

    git clone https://github.com/opensass/eld
  2. Navigate to the application directory.

    cd eld/examples/dioxus
  3. Run the client:

    dx serve --port 3000

Navigate to http://localhost:3000 to explore the landing page.