Find a file
2025-04-12 07:42:43 -04:00
assets feat: 0.6.2 2025-04-12 06:01:42 -04:00
src feat: 0.6.3 2025-04-12 07:42:43 -04:00
vendor/gimp-palette-rs feat: 0.2.0 2025-04-04 10:29:37 -04:00
.dockerignore feat: 0.2.0 2025-04-04 10:29:37 -04:00
.gitignore chore: update .gitignore 2025-04-06 07:53:50 -04:00
Cargo.lock feat: 0.6.3 2025-04-12 07:42:43 -04:00
Cargo.toml feat: 0.6.3 2025-04-12 07:42:43 -04:00
Dioxus.toml feat: 0.2.0 2025-04-04 10:29:37 -04:00
Dockerfile feat: 0.4.1 2025-04-08 12:40:42 -04:00
input.css feat: 0.6.3 2025-04-12 07:42:43 -04:00
README.md feat: 0.1.0 2025-03-30 09:16:21 -04:00
tailwind.config.js feat: 0.6.0 2025-04-11 09:33:18 -04:00

Development

Your new jumpstart project includes basic organization with an organized assets folder and a components folder. If you chose to develop with the router feature, you will also have a views folder.

Tailwind

  1. Install npm: https://docs.npmjs.com/downloading-and-installing-node-js-and-npm
  2. Install the Tailwind CSS CLI: https://tailwindcss.com/docs/installation
  3. Run the following command in the root of the project to start the Tailwind CSS compiler:
npx tailwindcss -i ./input.css -o ./assets/tailwind.css --watch

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