LoginSignup
4
6

More than 3 years have passed since last update.

Laravelプロジェクトcloneしてやることメモ

Posted at

毎回忘れるのでメモ

githubからclone

$ git clone 【cloneするプロジェクト】

パーミッション変更

$ chmod -R 777 storage
$ chmod -R 777 bootstrap/cache

vendorがないので

$ composer install

.envをコピーして作成
作成後DBの設定等する

$ cp .env.example .env

アプリケーションキーの初期化

$ php artisan key:generate

マイグレーション実行

$ php artisan migrate

参考

4
6
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
4
6