This time I'm redoing all of it with the Dioxus Rust crate. https://github.com/DioxusLabs/dioxus
Go to file
Ada Werefox f5a4727ae0 Initial commit. Base working state. 2023-03-28 13:21:31 +00:00
public Initial commit. Base working state. 2023-03-28 13:21:31 +00:00
src Initial commit. Base working state. 2023-03-28 13:21:31 +00:00
wasm Initial commit. Base working state. 2023-03-28 13:21:31 +00:00
.gitignore Initial commit. Base working state. 2023-03-28 13:21:31 +00:00
Cargo.toml Initial commit. Base working state. 2023-03-28 13:21:31 +00:00
Dioxus.toml Initial commit. Base working state. 2023-03-28 13:21:31 +00:00
LICENSE Initial commit. Base working state. 2023-03-28 13:21:31 +00:00
README.md Initial commit. Base working state. 2023-03-28 13:21:31 +00:00
build.rs Initial commit. Base working state. 2023-03-28 13:21:31 +00:00
tailwind.config.js Initial commit. Base working state. 2023-03-28 13:21:31 +00:00

README.md

Dioxus - letter.werefox.cafe

A re-implementation of the Valentine's Day site I made, but using Rust's Dioxus crate.

Usage

Just build the assets

dioxus build

Start a dev-server for the project:

dioxus serve

(or, I personally use the following since port 8080 is usually being used and I want hot reloading)

dioxus serve --hot-reload --port 8234

Package this project:

dioxus build --release

Project Structure

.project
- public # save the assets you want include in your project.
- src # put your code
- - utils # save some public function
- - components # save some custom components