0
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のプロジェクトを作成し、実行するだけ

Posted at

開発環境はWindows10 Pro(64bit) + PHP 8.1.9 + Composer version 2.4.1。

1 コマンドプロンプト上でカレントディレクトリをCドライブ直下に移動

cd c:\

2 コマンドプロンプト上でLaravelのプロジェクトを実行

composer create-project laravel/laravel laravel_test_repo

インストールが実行されるので、しばらく待機する。
Laravelのバージョンは10.2.9。
image.png

3 インストールが終了したら、コマンドプロンプト上で、プロジェクトのディレクトリへ移動する

cd laravel_test_repo

4 コマンドプロンプト上で、組み込みサーバーを実行する

php artisan serve

5 Webブラウザ上にて、localhost:8000へアクセスすると、以下のようなページが表示されます。
image.png

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?