dioxus-letter-werefox-cafe/README.md

40 lines
691 B
Markdown
Raw Normal View History

2023-03-28 08:21:31 -05:00
# Dioxus - [letter.werefox.cafe](https://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
```