From 1695e42b31e74e5f28fbf20e8a0c42d5d5a391d2 Mon Sep 17 00:00:00 2001 From: jenoh Date: Mon, 29 Jun 2020 14:53:51 +0200 Subject: [PATCH] add config for vagrant --- .gitignore | 2 +- Homestead.yaml.example | 26 ++++++++++++++++++++++++++ composer.json | 2 +- 3 files changed, 28 insertions(+), 2 deletions(-) create mode 100644 Homestead.yaml.example diff --git a/.gitignore b/.gitignore index 79e69fd..f5e891c 100755 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,6 @@ Homestead.json Homestead.yaml npm-debug.log yarn-error.log - +Homestead.yaml public/js/app.js public/css/app.css diff --git a/Homestead.yaml.example b/Homestead.yaml.example new file mode 100644 index 0000000..303fec5 --- /dev/null +++ b/Homestead.yaml.example @@ -0,0 +1,26 @@ +ip: 192.168.10.16 +memory: 2048 +cpus: 2 +provider: virtualbox +authorize: ~/.ssh/id_rsa.pub +keys: + - ~/.ssh/id_rsa +folders: + - + map: /home/jenoh/data/CA_LARAVEL + to: /home/vagrant/code +sites: + - + map: homestead.test + to: /home/vagrant/code/public +databases: + - homestead +features: + - + mariadb: false + - + ohmyzsh: false + - + webdriver: false +name: ca-laravel +hostname: ca-laravel diff --git a/composer.json b/composer.json index 6284439..0ac86b5 100755 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ "require-dev": { "facade/ignition": "^2.0", "fzaninotto/faker": "^1.9.1", - "laravel/homestead": "^10.4", + "laravel/homestead": "^10.9", "mockery/mockery": "^1.0", "nunomaduro/collision": "^4.1", "phpunit/phpunit": "^8.5"