47
34

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Laravelプロジェクトの作成と起動

Posted at

Laravelプロジェクトの作成と起動

環境

  • macOS HighSierra 10.13.3
  • PHP 7.2.1
  • Laravel Framework 5.6.12

手順

  1. Composerのインストール
  2. Laravelプロジェクトの作成
  3. 起動

Composerのインストール

公式サイトのスクリプトを実行する。

Composerについては良記事があるのでそちらをば。

Laravelプロジェクトの作成

$ composer create-project --prefer-dist laravel/laravel SampleProject

しばらく待つ。

作成されました。

$ ls
SampleProject

起動

$ cd SampleProject
$ php artisan serve
Laravel development server started: <http://127.0.0.1:8000>

ローカルにアクセスして起動確認。

スクリーンショット 2018-03-26 11.49.40.png

上の画面が出ればおしまい。簡単ね。

47
34
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
47
34

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?