1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

miriwoお一人様Advent Calendar 2024

Day 13

laravel sailで構築されたアプリケーションのコードをcloneして構築する

Posted at

概要

下記で構築しリモートリポジトリにアップしたlaravel sailで作成したコードをcloneして再度構築する方法を簡単にまとめる。

前提

構築するPCのローカルに下記が入っていること

  • Docker
  • PHP
  • composer

方法

  1. コードをclone

  2. cloneしたディレクトリに移動

  3. 下記コマンドを実行

    composer intall
    
  4. .envファイルの作成

    cp .env.local .env
    
  5. 下記コマンドを実行してバックグラウンドで実行

    ./vendor/bin/sail up -d
    
  6. コンテナ内部でcomposer管理下のパッケージをinstall

    ./vendor/bin/sail composer install
    
  7. DBがある場合は下記コマンドを実行してマイグレーションを実行

    ./vendor/bin/sail artisan migrate
    
1
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?