LoginSignup
0
0

More than 3 years have passed since last update.

Laravel 6.6 LTS セットアップ

Posted at

1:インストール

% composer create-project --prefer-dist laravel/laravel spider

2:簡易サーバー起動、動作チェック

% cd spider
% php artisan serve

以下が表示されればオッケ。
スクリーンショット 2019-11-28 9.37.16.png

3:SQLite 設定

.env編集
DB_CONNECTION=sqlite
#DB_DATABASE=laravel
データベース作成
% touch database/database.sqlite
マイグレーション
% php artisan migrate    

4:Laravel 初期設定

/config/app.php
    'timezone' => 'Asia/Tokyo',
    'locale' => 'ja',

5:git管理する。

% git init
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