Added documentation

This commit is contained in:
Dmitry Khomutov 2016-07-17 20:20:35 +06:00
commit fa42071d01
49 changed files with 1255 additions and 0 deletions

19
docs/en/plugins/pgsql.md Normal file
View file

@ -0,0 +1,19 @@
Connects to a given PostgreSQL server and runs a list of queries.
### Example Configuration:
```yaml
build_settings:
pgsql:
host: 'localhost'
user: 'testuser'
pass: '12345678'
setup:
pgsql:
- "CREATE DATABASE my_app_test;"
complete:
pgsql:
- "DROP DATABASE my_app_test;"
```