File size: 743 Bytes
b98ffbb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# Core library for dora
## Generating dora schema
```bash
cargo run -p dora-core generate_schemas
```
## VSCode YAML Dataflow Support
We can pass the JSON Schema to VSCode [`redhat.vscode-yaml`](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml) to enables features such as:
- Type validation
- Suggestions
- Documentation
### Getting started
1. Install [`redhat.vscode-yaml`](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml)
2. Open User Settings(JSON) in VSCode within `ctrl`+ `shift` + `p` search bar.
3. Add the following:
```json
"yaml.schemas": {
"https://raw.githubusercontent.com/dora-rs/dora/main/libraries/core/dora-schema.json": "/*"
},
```
And you should be set! 🔥
|