GitXplorerGitXplorer
a

autoware-build-gui

public
15 stars
4 forks
2 issues

Commits

List of commits on branch main.
Unverified
91f536711ff8d36d89ddf7b2e80bcd74d75fa628

Refactor dropdown button styles

KKhalilSelyan committed 7 months ago
Unverified
6aa259d6e553f46a9a3edb2d4d93a77486002d1d

fix: force 1/2 size for each container left and right

KKhalilSelyan committed 7 months ago
Unverified
3e886a52894760fa5a72d461769d9b0c1f0ace18

fix max width of container to not overflow

KKhalilSelyan committed 8 months ago
Verified
5faec197c1047466002fe87e2c55253c742f85cf

Update version (#9)

KKhalilSelyan committed 8 months ago
Verified
e6fd70eb266888d4bbf2b4b1d8d0d295d38a5837

Fix/logs (#8)

KKhalilSelyan committed 8 months ago
Verified
18b6705c61298af730364b92354952eb60ae598c

Style/left pane (#7)

KKhalilSelyan committed 8 months ago

README

The README file for this repository.

Autoware Build GUI

Autoware Build GUI is a Tauri / NextJS application designed to simplify the process of building Autoware packages. Instead of relying on command prompts, users can now utilize a user-friendly graphical interface.

Table of Contents

Dependencies

To run the .deb file directly you will need to first check if these dependencies are installed.

sudo apt install libwebkit2gtk-4.1-0 libjavascriptcoregtk-4.1-0 libsoup-3.0-0 libsoup-3.0-common

To develop the Autoware Build GUI, you'll need to have both Rust and Node.js installed on your system.

Installing Rust

  1. To install Rust, run the following command:

    curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs/ | sh
  2. Follow the on-screen instructions to complete the installation.

  3. Once installed, you can verify your Rust installation with:

    rustc --version

Installing Node.js

  1. You can download and install Node.js from the official website.

  2. Alternatively, if you're using a package manager like apt for Ubuntu/Debian or brew for macOS, you can install Node.js with:

    • For Ubuntu/Debian:

      sudo apt update
      sudo apt install nodejs
  3. Verify your Node.js installation with:

    node --version
  4. It's also recommended to install pnpm as it's not included:

    npm install -g pnpm

Once Rust and Node.js are set up, you can proceed with the Installation steps mentioned above.

Installation

Using the .deb File

For most users, the easiest way to get started is by downloading and installing the provided .deb file.

For Developers

If you're interested in developing additional features or want to run the project from source:

  1. Clone the repository:

    git clone https://github.com/leo-drive/autoware-build-gui.git
  2. Navigate to the project directory:

    cd autoware-build-gui
  3. Install the required packages:

    pnpm i
  4. Run the development version of the app:

    pnpm tauri dev

Usage

For a comprehensive guide on how to use the Autoware Build GUI, please refer to our demo video. In essence, the process involves:

Demo Video

Autoware Build GUI Demo

  1. Launching the app.
  2. Setting the path to the Autoware folder.
  3. Selecting the packages you wish to build.

If you haven't cloned the packages yet (i.e., no src folder exists), the app will handle this for you, following the same procedure outlined in the Autoware source installation instructions documentation.

Features

  • Initialization: Automatically creates an src folder and clones necessary packages if they aren't present.
  • Adding Calibration Packages: Ability to add calibration packages to the project.
  • Pre-configured Setups: Offers minimal setups for AWSIM, Planning Simulator, and Logging Simulator and Calibration tools.
  • Config Management: Ability to save and load configurations for specific selected packages.
  • Log Management: Save build logs for future reference.
  • Build Process: Seamlessly build selected packages with a click.

Contributing

We welcome contributions from the community! If you're interested in enhancing the Autoware Build GUI, please follow the installation instructions for developers and feel free to submit pull requests.

Author

Khalil Selyan - Creator and maintainer of Autoware Build GUI.

License

This project is licensed under the MIT License. See the LICENSE file for details.