-
-
Save rcdelfin/2b7b1dc45afe051512daec5b496c6ae2 to your computer and use it in GitHub Desktop.
Revisions
-
idecardo revised this gist
Sep 28, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -49,7 +49,7 @@ Rename folder `0` to `6.3.0` ## Alternative Using [gitbash](https://git-scm.com/downloads), within `c:/users/idecardo/.vagrant.d/boxes/laravel-VAGRANTSLASH-homestead` directory: ``` touch metadata_url -
idecardo revised this gist
Sep 28, 2018 . 1 changed file with 23 additions and 11 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,27 +5,29 @@ Laravel Homestead is an official, pre-packaged Vagrant box that provides you a w ## Download Download homestead box: ``` https://app.vagrantup.com/laravel/boxes/homestead/versions/6.3.0/providers/virtualbox.box ``` > You can change the version of homestead box. *Current version:* `6.3.0`. After downloading the box, rename it to `virtualbox.box` or whatever name you like. > Don't forget to include the `.box` extension. ## Vagrant Add the downloaded homestead box to vagrant: ``` vagrant box add laravel/homestead file:///c:/users/idecardo/downloads/virtualbox.box ``` > Change the path to where you stored your downloaded homestead box. ## Update homestead box Navigate to vagrant directory: @@ -36,11 +38,21 @@ c:/users/idecardo/.vagrant.d/boxes/laravel-VAGRANTSLASH-homestead Create a `metadata_url` file and add this link: ``` https://app.vagrantup.com/laravel/homestead ``` > Do not add a newline. Rename folder `0` to `6.3.0` > `6.3.0` is your homestead box version. ## Alternative Using [gitbash](https://git-scm.com/downloads), with `c:/users/idecardo/.vagrant.d/boxes/laravel-VAGRANTSLASH-homestead` directory: ``` touch metadata_url echo -n 'https://app.vagrantup.com/laravel/homestead' > metadata_url mv 0 6.3.0 ``` -
idecardo created this gist
Jul 7, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,46 @@ # Getting Started Laravel Homestead is an official, pre-packaged Vagrant box that provides you a wonderful development environment without requiring you to install PHP, HHVM, a web server, and any other server software on your local machine. [Read more...](https://laravel.com/docs/homestead) ## Download Download homestead box using this link: ``` https://atlas.hashicorp.com/laravel/boxes/homestead/versions/0.5.0/providers/virtualbox.box ``` **NOTE:** You can change the version of homestead box. *Current version:* `0.5.0`. After downloading the box, you will get a file named `hc-download` rename it to something like `virtualbox.box` or whatever name you like. Just don't forget to include the `.box` extension. ## Vagrant Now, you can add the downloaded box to vagrant: ``` vagrant box add laravel/homestead file:///c:/users/idecardo/downloads/virtualbox.box ``` **NOTE:** Change the path where you stored your downloaded box. ## Complete Navigate to vagrant directory: ``` c:/users/idecardo/.vagrant.d/boxes/laravel-VAGRANTSLASH-homestead ``` Create a `metadata_url` file and add this link: ``` https://atlas.hashicorp.com/laravel/homestead ``` **NOTE:** Do not add a newline. Rename folder `0` to `0.5.0` **NOTE:** `0.5.0` is you homestead box version.