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?

More than 3 years have passed since last update.

アプリケーションを動作させる

Posted at

###.envの設定
以下のコマンドを実行する

$ cp .env.example .env
$ vi .env

.envファイルに下記の設定を行っていく。

項目名
APP_NAME アプリケーション名
APP_ENV production
APP_DEBUG false
APP_URL 実際のURL
DB_HOST RDSデータベース詳細画面の[エンドポイント]
DB_DATABASE 作成したデータベース名
DB_USERNAME 作成したユーザー名
DB_PASSWORD 作成したパスワード

最後にAPP_KEYを自動更新する

$ php artisan key:generate

問題なければ.envのAPP_KEYに値が入っている

###マイグレーションを実行

$ php artisan migration

途中の質問にYESでOK

完了したら指定したURLでアクセスできるか確認

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?