Allow for configuring the MySQL port number

Fixes #9
This commit is contained in:
Oliver Davies 2021-03-16 09:04:14 +00:00 committed by GitHub
parent c21e012c47
commit 6a12b176e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,6 +7,7 @@
$databases['{{ key }}']['{{ target }}'] = array(
'driver' => '{{ values.driver|default('mysql') }}',
'host' => '{{ values.host|default('localhost') }}',
'port' => '{{ values.port|default('3306') }}',
'database' => '{{ values.database }}',
'username' => '{{ values.username }}',
'password' => '{{ values.password }}',