Skip to content
This repository was archived by the owner on Nov 13, 2024. It is now read-only.

Commit ce4781e

Browse files
committed
Adding Magento and an example MySQL defaults file to docs.
1 parent ac4b6bc commit ce4781e

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ These deployment scripts currently support:
66

77
* [Drupal](https://www.drupal.org)
88
* [WordPress](https://wordpress.com/)
9+
* [Magento](https://magento.com/)
910
* [Symfony](https://symfony.com/)
1011
* Flat HTML
1112

@@ -77,6 +78,17 @@ If you use a MySQL (or similar) database (so clearly Drupal, WordPress and some
7778
* mysql client on the target app server(s)
7879
* mysql 'defaults' file we can pass to prepare scripts (default location `/etc/mysql/debian.cnf`)
7980

81+
Example 'defaults' file:
82+
83+
```
84+
[client]
85+
host = 127.0.0.1
86+
user = root
87+
password = MYSQL_PASSWORD
88+
```
89+
90+
`host` can be an IP address or a hostname/fully qualified domain name. `user` does not have to be root, but the username selected must be able to manipulate the necessary databases and create new databases and grants.
91+
8092
# Quickstart
8193

8294
Clone this repository into a location of your choice on your CI server (usually Jenkins).

0 commit comments

Comments
 (0)