Added documentation
This commit is contained in:
parent
96bc300f77
commit
fa42071d01
49 changed files with 1255 additions and 0 deletions
19
docs/en/plugins/pgsql.md
Normal file
19
docs/en/plugins/pgsql.md
Normal 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;"
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue