Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bitzl/vagrant-wordpress

A vagrant base box for Wordpress development.
https://github.com/bitzl/vagrant-wordpress

Last synced: 17 days ago
JSON representation

A vagrant base box for Wordpress development.

Awesome Lists containing this project

README

        

vagrant-wordpress
=================

A vagrant base box for Wordpress development.

Recommended use
---------------

To use import the base box, use

```
vagrant box add bitzl/wordpress
```

For plugin development, link the plugin directory into the wordpress installation. Add to your Vagrant file:

```ruby
config.vm.synced_folder "", "/var/www/wordpress/wp-content/plugins/"
```

For theme development, link the theme directory into the wordpress installation. Add to your Vagrant file:

```ruby
config.vm.synced_folder "", "/var/www/wordpress/wp-content/themes/"
```

The development system uses the following credentials:

- Wordpress: admin/admin
- MySQL: wordpress/wordpress, Database `wordpress`
- MySQL-Root: root/root

Build yourself
--------------

Just clone this repository and run `vagrant up`.