Rename sqlite storage path to sqlite3 -- that's the name of mattn/go-sqlite3

Signed-off-by: Shin'ya Minazuki <shinyoukai@laidback.moe>
This commit is contained in:
2025-12-27 19:33:38 -03:00
parent 5e79d781fe
commit f961622aa2

View File

@@ -588,8 +588,8 @@ If at least one announcement is archived, a **Past Announcements** section will
| Parameter | Description | Default |
|:------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------|:-----------|
| `storage` | Storage configuration | `{}` |
| `storage.path` | Path to persist the data in. Only supported for types `sqlite` and `postgres`. | `""` |
| `storage.type` | Type of storage. Valid types: `memory`, `sqlite`, `postgres`. | `"memory"` |
| `storage.path` | Path to persist the data in. Only supported for types `sqlite3` and `postgres`. | `""` |
| `storage.type` | Type of storage. Valid types: `memory`, `sqlite3`, `postgres`. | `"memory"` |
| `storage.caching` | Whether to use write-through caching. Improves loading time for large dashboards. <br />Only supported if `storage.type` is `sqlite` or `postgres` | `false` |
| `storage.maximum-number-of-results` | The maximum number of results that an endpoint can have | `100` |
| `storage.maximum-number-of-events` | The maximum number of events that an endpoint can have | `50` |
@@ -606,10 +606,10 @@ storage:
maximum-number-of-results: 200
maximum-number-of-events: 5
```
- If `storage.type` is `sqlite`, `storage.path` must not be blank:
- If `storage.type` is `sqlite3`, `storage.path` must not be blank:
```yaml
storage:
type: sqlite
type: sqlite3
path: data.db
```
See [examples/docker-compose-sqlite-storage](.examples/docker-compose-sqlite-storage) for an example.