nandi/jolt-nativepublic Fork 0
fa4ecdfed6a830e6099d5fab9be24ef72ea1923b
Commits
Clone
git clone https://git.rickub.com/nandi/jolt-native.git
git clone ssh://git@rickub.com/nandi/jolt-native.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

README.md · 28 lines · 715 Bmarkdown Blame HistoryRaw
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1## How to install
2
3[trunk](https://trunkrs.dev/) is used to build and serve the example.
4```sh
5cargo install --locked trunk
6# -- or --
7cargo binstall trunk
8```
9
10## How to run in debug mode
11
12```sh
13# Builds the project and opens it in a new browser tab. Auto-reloads when the project changes.
14trunk serve --open
15```
16
17## How to build in release mode
18
19```sh
20# Builds the project in release mode and places it into the `dist` folder.
21trunk build --release
22```
23
24## What does each file do?
25
26* `Cargo.toml` contains the standard Rust metadata. You put your Rust dependencies in here. You must change this file with your details (name, description, version, authors, categories)
27
28* The `src` folder contains your Rust code.