GitXplorerGitXplorer
D

docsite

public
132 stars
124 forks
48 issues

Commits

List of commits on branch main.
Verified
334c3ad3404de6edb46bc87ecbddcced45c36d7c

Revert "Check the code in the guide (#380)" (#391)

jjkelleyrtp committed 2 days ago
Verified
b7f514e8c631a79333670d5e9fcbfde11e31e163

Check the code in the guide (#380)

eealmloff committed 5 days ago
Verified
0e7b49b330e2b3c6d9d0f2957ab763e72c8d808a

Update configure.md (#386)

ww3irdrobot committed 5 days ago
Verified
93bf78b14df9869be76930a003913fa0a85ee33e

regen router

jjkelleyrtp committed 10 days ago
Verified
0301794e113518987c144689df261673ada1bfe0

fix typo

jjkelleyrtp committed 10 days ago
Verified
2b21022fb78299692c2f6294f012be1ec297e10f

Fix typo in deploy guide (#383)

rradstevee committed 10 days ago

README

The README file for this repository.

dioxuslabs.com

This repository contains the source code for the https://dioxuslabs.com website.

This website is written with Dioxus, pre-generated with dioxus_ssr, and then rehydrated with interactivity provided by dioxus_web.

Development

Run the following command in the root of the project to start the Tailwind CSS compiler:

npx tailwindcss -i ./tailwind.css -o ./assets/tailwind.css --watch

The documentation can be edited using any text editor. Most commonly used editors support syntax highlighting for the markdown format. To view your changes you can install the dx tool locally, assuming you already have a working Rust setup:

cargo install dioxus-cli

With dx installed, you can use it to build and serve the documentation on your local system:

dx serve

This will start a local server that will be available on localhost:8080 and will automatically build and re-build the documentation when it changes.

Contributing