Mehrdad Abdolghafari
Mehrdad Abdolghafari

Reputation: 355

What is the benefit of using vagrant in Laravel?

What is the benefit of using Vagrant (via homestead) instead of using WAMP server on Microsoft Windows?

I found that configuring homestead and vagrant is harder than installing WAMP. Isn't it?

Upvotes: 0

Views: 395

Answers (1)

Jishad
Jishad

Reputation: 2965

Laravel Vagrant is a homestead for development environment.

Its easy to install server requirements and including many dependencies in out command.

Ubuntu 14.04
PHP 5.6
HHVM
Nginx
MySQL
Postgres
Node (With Bower, Grunt, and Gulp)
Redis
Memcached
Beanstalkd
Laravel Envoy
Fabric + HipChat Extension

You don't needs to spend your time for configuring web server locally for this.

I think in windows better is Wamp, but in case of Ububtu and Mac, the Vagrant (Homestead) is better than others...

Upvotes: 1

Related Questions