Added docs for SQLite plugin

This commit is contained in:
Dmitry Khomutov 2016-08-25 22:54:28 +07:00
commit 65cc22fa78
2 changed files with 24 additions and 0 deletions

23
docs/en/plugins/sqlite.md Normal file
View 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;"
```