A new, web based frontend for fits
  • Rust 97.7%
  • Shell 1.2%
  • CSS 1.1%
Find a file
2026-02-28 19:48:11 +01:00
assets Initial commit 2026-02-28 19:45:56 +01:00
fits_api Initial commit 2026-02-28 19:45:56 +01:00
src Initial commit 2026-02-28 19:45:56 +01:00
.gitignore Initial commit 2026-02-28 19:45:56 +01:00
Cargo.lock Initial commit 2026-02-28 19:45:56 +01:00
Cargo.toml Initial commit 2026-02-28 19:45:56 +01:00
clippy.toml Initial commit 2026-02-28 19:45:56 +01:00
COPYING Add license 2026-02-28 19:48:11 +01:00
Dioxus.toml Initial commit 2026-02-28 19:45:56 +01:00
README.md Initial commit 2026-02-28 19:45:56 +01:00

Fits web-based frontend

Add some more descriptions here

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