Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/bitzl/vagrant-wordpress
- Owner: bitzl
- License: mit
- Created: 2015-01-03T13:56:54.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-03T19:46:15.000Z (almost 10 years ago)
- Last Synced: 2024-10-28T05:13:52.620Z (about 2 months ago)
- Language: Shell
- Size: 133 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/rootBuild yourself
--------------Just clone this repository and run `vagrant up`.