diff --git a/MySQL-plugin.md b/MySQL-plugin.md new file mode 100644 index 0000000..cbeeb32 --- /dev/null +++ b/MySQL-plugin.md @@ -0,0 +1,19 @@ +Connects to a given MySQL server and runs a selection of queries. + +### Example Configuration: + +```yaml +build_settings: + mysql: + host: 'localhost' + user: 'testuser' + pass: '12345678' + +setup: + mysql: + - "CREATE DATABASE my_app_test;" + +complete: + mysql: + - "DROP DATABASE my_app_test;" +``` \ No newline at end of file