Skip to content

Commit 8daa64a

Browse files
author
Matthew S Plant
committed
additional small formatting tweaks for a GitHub markup newbie
1 parent 4b898b8 commit 8daa64a

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

README.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,22 @@
1-
2-
A **standalone Magento DevOps environment** in [VirtualBox](https://www.virtualbox.org/) built with [Vagrant](http://www.vagrantup.com/) and [Puppet](http://puppetlabs.com/) from a vanilla Ubuntu 12.04 LTS box.
1+
A **standalone Magento DevOps environment** built with [Vagrant](http://www.vagrantup.com/) and [Puppet](http://puppetlabs.com/) from a vanilla Ubuntu 12.04 LTS box.
32

43
Leverage [Composer](http://getcomposer.org/) and [Phing](http://www.phing.info/) scripts for enhanced DevOps automation.
54

65
Use your own Magento code or have it install the Magento version of your choice.
76

87
## Getting Started
98

10-
1. Install the required software for your **host** machine:
9+
1. Install the required software for your **host** machine
1110
* Download and install [VirtualBox](https://www.virtualbox.org/wiki/Downloads)
1211
* Download and install [Vagrant](http://downloads.vagrantup.com/)
1312

14-
2. Create the parent directory for your projects:
13+
2. Create the parent directory for your projects
1514
```
1615
mkdir ~/vagrant
1716
cd ~/vagrant
1817
```
19-
20-
3. Grab the magento-vagrant-puppet code:
18+
19+
3. Grab the magento-vagrant-puppet code
2120
```
2221
git clone https://github.com/matthewsplant/magento-vagrant-puppet.git project_dir
2322
cd project_dir
@@ -27,26 +26,28 @@ cd project_dir
2726
* Set install to true in the Magento class of the main puppet manifest file (base.pp)
2827
* Set the Magento version also in the Magento class of the main puppet manifest file
2928
* And remember to revert the install back to false after install
30-
* Add **magento.localhost** to your local hosts /etc/hosts file:
3129
```
32-
127.0.0.1 magento.localhost
30+
127.0.0.1 magento.localhost
3331
```
3432

3533
5. (Optional) Use your own Magento code
3634
* "git-clone" your Magento project to "www/magento"
3735
* Import your MySQL database and update the base URLs via the following MySQL query:
3836
```
39-
UPDATE magento.core_config_data
40-
SET value = 'http://magento.localhost:8080/'
41-
WHERE path in ('web/unsecure/base_url', 'web/secure/base_url')
37+
UPDATE magento.core_config_data
38+
SET value = 'http://magento.localhost:8080/'
39+
WHERE path in ('web/unsecure/base_url', 'web/secure/base_url')
4240
```
4341
* Clear the Magento cache
4442

45-
6. **Spin up your new Magento DevOps environment**:
43+
6. Add *magento.localhost* to your hosts /etc/hosts file
44+
45+
7. **Spin up your new DevOps environment**
4646
```
4747
vagrant up
4848
```
4949

50+
5051
## FAQ's
5152

5253
#### Credentials (set in the main puppet manifest file)

0 commit comments

Comments
 (0)