1
0
Jonathan Kelley 5d4893493b revert ring pr 5 сар өмнө
..
assets 8334f7fbaa feat: device hot-reload, tools-relative adb, auto port bind (#3586) 5 сар өмнө
src 03c2d6711d fix: pass off env vars to android apps (#3621) 5 сар өмнө
.gitignore a9d7b4d32a Prepare CLI for move into mainline 2 жил өмнө
Cargo.toml 5d4893493b revert ring pr 5 сар өмнө
Dioxus.toml 8a0eca1c8a remove: default_platform toml field (#3108) 8 сар өмнө
README.md 66a50240bc Update all docs links to 0.6, release 0.6 (#3225) 6 сар өмнө
build.rs 88af3e7eff Hotreloading of `for/if/body`, formatted strings, literals, component props, nested rsx, light CLI rewrite, cli TUI (#2258) 11 сар өмнө

README.md

📦✨ Dioxus CLI

Tooling to supercharge Dioxus projects

The dioxus-cli (inspired by wasm-pack and webpack) is a tool for getting Dioxus projects up and running. It handles building, bundling, development and publishing to simplify development.

Installation

Install the stable version (recommended)

cargo install dioxus-cli

Install the latest development build through git

To get the latest bug fixes and features, you can install the development version from git. However, this is not fully tested. That means you're probably going to have more bugs despite having the latest bug fixes.

cargo install --git https://github.com/DioxusLabs/dioxus dioxus-cli

This will download the CLI from the master branch, and install it in Cargo's global binary directory (~/.cargo/bin/ by default).

Install from local folder

Note: The CLI will fail to build projects in debug profile. This is currently under investigation.

cargo install --path .

Get started

Use dx new to initialize a new Dioxus project. It will be cloned from the dioxus-template repository.

Alternatively, you can specify the template path:

dx new --template gh:dioxuslabs/dioxus-template

Run dx --help for a list of all the available commands. Furthermore, you can run dx <command> --help to get help with a specific command.

Dioxus config file

You can use the Dioxus.toml file for further configuration. Some fields are mandatory, but the CLI tool will tell you which ones are missing. You can create a Dioxus.toml with all fields already set using dx config init project-name, or you can use this bare-bones template (only mandatory fields) to get started:

[application]
name = "project-name"
# Currently supported platforms: web, desktop
default_platform = "web"

[web.app]
title = "Hello"

[web.resource.dev]