Development

Our project's source code is available on GitHub.

Prerequisites

Before getting started, make sure to install the following prerequisites:

Development Setup

# Clone the repository
git clone https://github.com/picoHz/taxy

# Start the server
cd taxy
cargo run

# In a separate terminal, start `trunk serve` for the WebUI
cd taxy-webui
trunk serve

Building for Release

# Build the WebUI
cd taxy/taxy-webui
trunk build --release

# Build the Server
cd ..
cargo build --release

# Start the server
target/release/taxy start

Gitpod

You can instantly start developing Taxy in your browser using Gitpod.

Open in Gitpod