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編

Last updated at Posted at 2024-09-09

環境構築としてLaravelのセットアップについて記録しておく
今回はUbuntu上にLaravelをインストールする

Ubuntuのインストールはこちら
PHP・MySQLのインストールはこちら

1.nodeのインストール

※sudo apt でインストールされるnodeは古い為、nvm(ノード バージョン マネージャー)でインストールする

nvmインストール

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash

image.png

ターミナルを再起動してnodeをインストール:最新の安定版(lts)

nvm install --lts

image.png

2.composerインストール

適当なディレクトリを作成し、インストーラをダウンロードする

sudo php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"

image.png

usr/local/binへインストール

sudo php composer-setup.php --install-dir=/usr/local/bin --filename=composer

composer

image.png

3.Laravelプロジェクトの作成

ディレクトリを作成し、プロジェクト作成

composer create-project laravel/laravel .

image.png
image.png


テーブル作成

php artisan migrate

image.png


.envの DB関連の設定を変更

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=Laravel
DB_USERNAME=root
DB_PASSWORD={設定したパスワード}

phpを起動してアクセス

php artisan serve

http://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?