No description
Find a file
2025-11-05 10:14:17 +01:00
assets init 2025-11-05 10:14:17 +01:00
src init 2025-11-05 10:14:17 +01:00
.envrc git init 2025-11-05 09:33:00 +01:00
.gitignore init 2025-11-05 10:14:17 +01:00
Cargo.lock init 2025-11-05 10:14:17 +01:00
Cargo.toml init 2025-11-05 10:14:17 +01:00
clippy.toml init 2025-11-05 10:14:17 +01:00
Dioxus.toml init 2025-11-05 10:14:17 +01:00
flake.lock git init 2025-11-05 09:33:00 +01:00
flake.nix init 2025-11-05 10:14:17 +01:00
README.md init 2025-11-05 10:14:17 +01:00

Development

Your new bare-bones project includes minimal organization with a single main.rs file and a few assets.

project/
├─ assets/ # Any assets that are used by the app should be placed here
├─ src/
│  ├─ main.rs # main.rs is the entry point to your application and currently contains all components for the app
├─ Cargo.toml # The Cargo.toml file defines the dependencies and feature flags for your project

Serving Your App

Run the following command in the root of your project to start developing with the default platform:

dx serve

To run for a different platform, use the --platform platform flag. E.g.

dx serve --platform desktop