Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: plugins -> config #2974

Merged
merged 1 commit into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
301 changes: 0 additions & 301 deletions sites/docs/pages/guides/usql-migration-guide/index.md

This file was deleted.

9 changes: 5 additions & 4 deletions sites/docs/pages/plugins/component-plugins/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@ npm install @acme/charting

## Registering Component Plugins

Once the plugin is installed, add it to `evidence.plugins.yaml` to register it in your project.
Once the plugin is installed, add it to `evidence.config.yaml` to register it in your project.

```yaml
components:
@evidence-dev/core-components: {}
@acme/charting: {}
plugins:
components:
@evidence-dev/core-components: {}
@acme/charting: {}
```


Expand Down
11 changes: 6 additions & 5 deletions sites/docs/pages/plugins/source-plugins/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,14 @@ npm install @cool-new-db/evidence-source-plugin

## Registering Source Plugins

Once the plugin is installed, add it to `evidence.plugins.yaml` to register it in your project.
Once the plugin is installed, add it to `evidence.config.yaml` to register it in your project.

```yaml
components:
@evidence-dev/core-components: {}
databases:
@cool-new-db/evidence-source-plugin
plugins:
components:
@evidence-dev/core-components: {}
datasources:
@cool-new-db/evidence-source-plugin
```

## Configuring Source Plugins
Expand Down
Loading