27 lines
807 B
Text
27 lines
807 B
Text
## Contributing Guide
|
|
|
|
Contributing is welcome, if you find some bugs or have some ideas, please open an issue or submit a pull request.
|
|
|
|
Please ensure that you are using clean code, follows the coding style or code organization in exists codes, and pass all tests.
|
|
|
|
Please submit one PR for do one thing, this is important, that for help us to review your code more easily and push to merge fast.
|
|
|
|
## Development and Testing
|
|
|
|
There have a lot of UI test cases in `crates/story` folder, if you change the exists features you can run the tests is working.
|
|
|
|
### Run story
|
|
|
|
Use `cargo run` to run a complete story examples.
|
|
|
|
```bash
|
|
cargo run
|
|
```
|
|
|
|
### Run single example
|
|
|
|
There also available some split examples, run `cargo run --example` to see the available examples.
|
|
|
|
```bash
|
|
cargo run --example table
|
|
```
|