https://github.com/mrxiaozhuox/dorea-lab
Dorea desktop manage tool - use dioxus framework
https://github.com/mrxiaozhuox/dorea-lab
database dioxus dorea
Last synced: 3 months ago
JSON representation
Dorea desktop manage tool - use dioxus framework
- Host: GitHub
- URL: https://github.com/mrxiaozhuox/dorea-lab
- Owner: mrxiaozhuox
- License: mit
- Created: 2022-01-27T12:07:46.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-24T03:38:04.000Z (over 4 years ago)
- Last Synced: 2026-02-19T04:39:51.701Z (5 months ago)
- Topics: database, dioxus, dorea
- Language: Rust
- Homepage:
- Size: 93.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dioxus-template
> a template for starting a dioxus project to be used with dioxus-cli
## Usage
#### use `dioxus-cli` init the template:
```
dioxus init hello-dioxus
```
or you can choose the template, for this tempalte:
```
dioxus init hello-dioxus --template=gh:dioxuslabs/dioxus-template
```
#### Start a `dev-server` for the project:
```
cd ./hello-dioxus
dioxus serve
```
or 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
```