laravel blog 5.6.5
v1.0
これは、Laravel 5.6フレームワークとブートストラップ4に基づくサンプルブログです。
このブログプロジェクトでは、いくつかのオープンソースプロジェクトと無料プロジェクトを使用して適切に機能します。
そしてもちろん、Blog Project自体はGitHubに公開リポジトリを備えたオープンソースです。
git clone https://github.com/mubbi/laravel-blog-5.6.5.gitcd laravel-blog-5.6.5composer installrename .env.example to .envphp artisan key:generateconfig/app.php & .envを編集し、正しいアプリURLを設定しますconfig/database.phpを編集し、DB接続の詳細を設定しますphp artisan migrate --seedphp artisan storage:linkset mailtrap credentials in .env file to avoid swift email errorsAfter installing, you may need to configure some permissions. Directories within the "storage" and the "bootstrap/cache" directories should be writable by your web server or the project will not run.Register in the application as the first user and get all admin roles by default注:自動ユーザー登録アクティベーションメールとサブスクライバー検証メールはキューワーカーを使用して送信されるため、プロジェクトでキューワーカーを有効にする必要があります:https://laravel.com/docs/5.6/queues#running-the-queue-worker
schedule:runGNU GPLV3