Dhiraj Wakchaure
Dhiraj Wakchaure

Reputation: 2716

is homestead is compulsory for laravel development

I am currently learning frameworks in php. I decided to try laravel.

i have tried its installation and routing example. while next step it says homestead installation instructions over there. It looks like any virtual machine to be installed . homestead description link

I want to know is it compulsory laravel should be use with homestead? if i don't use is there any effects on my code efficiency or performance?

Upvotes: 2

Views: 393

Answers (1)

Nihal Sahu
Nihal Sahu

Reputation: 56

Homestead is not compulsory. You can run Laravel with any common web server as long as you hit the proper requirements.

But Homestead does greatly ease the difficulty of having to setup a development environment, and it also lets you closely mimic your production server as to make the whole Download->Develop->Deploy process seamless.

Laravel Forge is a service that lets you manage your servers and set them up in such a way that almost mirrors Homestead. To See more, Go to the Laravel Forge Homepage

Upvotes: 1

Related Questions