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?

Laravel Sail導入手順

Posted at

環境 mac

Laravel sailとは

Laravel のデフォルトの Docker 開発環境と対話するための軽量のコマンドライン インターフェイス

崩すとlaravelをdockerで開発が簡単にできるツール

手順

環境 mac

  1. dockerを入れる

    https://www.docker.com/products/docker-desktop/

    ※Macのチップでダウンロードするものが変わってきます。

  2. プロジェクトの作成

    ターミナルを起動して

    作成したい作業ディレクトリ配下でコマンド実行

    curl -s "https://laravel.build/example-app" | bash

    example-appの部分はプロジェクト名になるので好きな名前を入れましょう(この記事ではexample-appで進めます)

    ※時間かかりますのでまったり待ちましょう

    途中でパスワードを求められるのでPCのパスワードを入力

  3. プロジェクトを起動

    作成できたらプロジェクトディレクトリに移動

    cd example-app
    exapmle-appは作成したプロジェクト名を入れましょう

    laravel sailを起動

    ./vendor/bin/sail up

    データベースのスキーマを定義

    ./vendor/bin/sail artisan migrate

  4. 起動確認

    下のリンクに接続して画像のような画面が出ればOK

    http://localhost

スクリーンショット 2024-11-02 22.37.13.png

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?