Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ealmloff/tiny-dioxus
https://github.com/ealmloff/tiny-dioxus
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ealmloff/tiny-dioxus
- Owner: ealmloff
- License: mit
- Created: 2023-01-08T20:22:38.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-21T13:38:42.000Z (10 months ago)
- Last Synced: 2024-12-22T04:41:57.263Z (about 1 month ago)
- Language: HTML
- Size: 475 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: history/dioxus-0.4.wasm.gz
- License: LICENSE
Awesome Lists containing this project
README
# dioxus-template
> a template for starting a dioxus project to be used with [dioxus-cli](https://github.com/DioxusLabs/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
```