diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..4f8f82b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_size = 4 +indent_style = space +trim_trailing_whitespace = true + +[*.sh] +indent_size = 2 diff --git a/README.md b/README.md index 78ce116..a37e84e 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,9 @@ CentOS7でLaravel5.5が動作する環境を構築します。 項目 | 値 --- | --- -IP | 192.168.99.99 +IP | 192.168.33.99 ドキュメントルート | /var/www/html -URL | http://192.168.99.99 +URL | http://192.168.33.99 マウント場所 | ./ <=> /var/www/html MySQLユーザー | vagrant MySQLパスワード | MySQL5.7 @@ -37,6 +37,7 @@ $ vagrant up # リンク -- [Vagrant](https://www.vagrantup.com) -- [VirtualBox](https://www.virtualbox.org) -- [Macの初期設定参考リンク](https://github.com/ucan-lab/tips/issues/3) +- [Vagrant&VirtualBoxインストール手順](https://github.com/ucan-lab/vagrant-laravel55/wiki/mac-vagrant-virtualbox-install) +- [Laravel5.5をインストールする例](https://github.com/ucan-lab/vagrant-laravel55/wiki/laravel5.5-install-example) +- [Laravelプロジェクトをgit cloneする例](https://github.com/ucan-lab/vagrant-laravel55/wiki/laravel-project-git-clone-example) +- [エイリアス設定](https://github.com/ucan-lab/vagrant-laravel55/blob/master/provision/project/.bash_aliases) diff --git a/Vagrantfile.example b/Vagrantfile.example index 4bc0e0b..00697d1 100755 --- a/Vagrantfile.example +++ b/Vagrantfile.example @@ -3,7 +3,7 @@ Vagrant.configure("2") do |config| # box config.vm.box = BOX_NAME # ネットワーク - config.vm.network :private_network, ip: "192.168.99.99" + config.vm.network :private_network, ip: "192.168.33.99" # プロビジョン config.vm.provision :bootstrap, type: "shell", path: "provision/#{BOX_NAME}/bootstrap.sh" # rootユーザーで実行 config.vm.provision :bootstrap_default_user, type: "shell", path: "provision/#{BOX_NAME}/bootstrap_default_user.sh", privileged: false # vagrantユーザーで実行 diff --git a/index.php b/index.php index 61ace19..e974c40 100644 --- a/index.php +++ b/index.php @@ -1,2 +1 @@ -