Added docs for SQLite plugin
This commit is contained in:
parent
e724504610
commit
65cc22fa78
2 changed files with 24 additions and 0 deletions
23
docs/en/plugins/sqlite.md
Normal file
23
docs/en/plugins/sqlite.md
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
Plugin SQLite
|
||||
-------------
|
||||
|
||||
Connects to a given SQLite DB and runs a list of queries.
|
||||
|
||||
Configuration
|
||||
=============
|
||||
|
||||
### Examples
|
||||
|
||||
```yaml
|
||||
build_settings:
|
||||
sqlite:
|
||||
path: '/path/to/sqlite.sqlite'
|
||||
|
||||
setup:
|
||||
sqlite:
|
||||
- "CREATE DATABASE my_app_test;"
|
||||
|
||||
complete:
|
||||
sqlite:
|
||||
- "DROP DATABASE my_app_test;"
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue