windows install laravel/homestead

First Steps

install vritualbox 5.x 、gitBash as well as vagrant.

  1. installing the homestead Vargrant box

    vagrant box add laravel/homestead
    
  2. installing homestead

     cd //your work floder 
     git clone https://github.com/laravel/homestead.git Homestead
    

    then cd Homestead

     bash init.sh //command to create Homestead.aml which will be placed in the ~./homestead (C:/User/aven/.homestead)
    
  3. configuring your homestrad

     //shared floder..
         floders:
         -map:G:/project/php
          to:/home/vagrant/Code
    
     //nginx sites
         sites:
         -map:aven.dev
          to:/home/vagrant/Code/laravel/public
    
  4. configuring your hosts file

     //the line you add to C:/windows/system32/driver/etc/hosts
     192.168.10.10 aven.dev
    
  5. lanuching your vbox

    //cd your homestead floder
    vagrant up
    

you can use ssh to connect vbox

  1. install ssh

    ssh-keygen -t rsa -C "you@homestead"
    
  2. configuing your alias

     alias vm="ssh [email protected] -p 2222"
    
  3. use you vm command to connect your vbox

Powered By Aven

你可能感兴趣的:(windows install laravel/homestead)