2014-09-26 12:57:09 +00:00
|
|
|
## Prerequisites to work on this project:
|
|
|
|
- [vagrant](http://www.vagrantup.com/)
|
|
|
|
- [virtualbox](https://www.virtualbox.org/)
|
|
|
|
- optional: [vagrant-hostsupdater](https://github.com/cogitatio/vagrant-hostsupdater)
|
2014-10-03 10:10:17 +00:00
|
|
|
- run `vagrant plugin install vagrant-hostsupdater` to install
|
2014-09-26 12:57:09 +00:00
|
|
|
|
|
|
|
## Get started:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
vagrant up
|
|
|
|
```
|
|
|
|
|
2014-10-03 10:13:18 +00:00
|
|
|
Wait for the provisioning to finish (~40mins), and go to your browser: http://coreos.dev
|
2014-09-26 12:57:09 +00:00
|
|
|
|
2014-10-05 09:54:36 +00:00
|
|
|
### If you want to add another wordpress instance:
|
2014-09-26 12:57:09 +00:00
|
|
|
```bash
|
|
|
|
vagrant ssh
|
2014-10-05 09:54:36 +00:00
|
|
|
sudo sh /data/infrastructure/scripts/adduser.sh example.dev wordpress
|
2014-09-26 12:57:09 +00:00
|
|
|
```
|
2014-10-05 09:54:36 +00:00
|
|
|
Check http://example.dev in your bowser!
|