add docs for db and redis

This commit is contained in:
Joel Wetzell
2026-03-21 11:12:06 -05:00
parent 23aa7d81e0
commit 24f2b45e07
8 changed files with 126 additions and 2 deletions
+21
View File
@@ -0,0 +1,21 @@
---
title: SQLite
sidebar:
order: 1
---
The `db.sqlite` module can open/create SQLite databases
- **type**: `db.sqlite`
- **params**:
- **dsn**: the data source name, this can be a file path or the special `:memory:` name for an in-memory DB
## Cap
### Example snippet
Opens an in-memory SQLite database
```
- id: db
type: db.sqlite
params:
dsn: ":memory:"
```