Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kazu69/capistrano-deploy_vagrant-wordpress
Example of deployed to Vagrant Vm using capistrano3
https://github.com/kazu69/capistrano-deploy_vagrant-wordpress
Last synced: 27 days ago
JSON representation
Example of deployed to Vagrant Vm using capistrano3
- Host: GitHub
- URL: https://github.com/kazu69/capistrano-deploy_vagrant-wordpress
- Owner: kazu69
- Created: 2014-02-11T13:00:40.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-11T13:08:43.000Z (almost 11 years ago)
- Last Synced: 2024-10-19T22:41:59.695Z (3 months ago)
- Language: Ruby
- Homepage:
- Size: 129 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
capistrano-deploy_vagrant-wordpress
===================================Example of deployed to Vagrant Vm using capistrano3
Add your ```/etc/hotsts``` file
```
192.168.33.10 wordpress.dev
192.168.33.10 staging-wordpress.dev
```setup
```
bundle install
vagrant up
```depoloy
```
# deploy staging
bundle exec cap deploy staging # see your browser http://staging-wordpress.dev/
bundle exec cap deploy production # see your browser http://wordpress.dev/
```