LoginSignup
0
0

More than 3 years have passed since last update.

Laravel5.5 Mac開発環境構築

Last updated at Posted at 2019-08-10

php 7系の設定

phpenv local 7.1.1

laravel 5.5系 のプロジェクト作成

  • プロジェクト名 sample-app の場合
composer create-project laravel/laravel sample-app --prefer-dist "5.5"
  • 認証機能のセットアップ
php artisan make:auth
  • log設定を変更( singledaily
    • (必要な人だけ)
vi config/app.php
-    'log' => env('APP_LOG', 'single'),
+    'log' => env('APP_LOG', 'daily'),
  • timezoneを変更( UTCJST
vi config/app.php
-    'timezone' => 'UTC',
+    'timezone' => 'Asia/Tokyo',
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0