An open API service indexing awesome lists of open source software.

https://github.com/shotaromatsuya/lara-refresher

Laravel学習用
https://github.com/shotaromatsuya/lara-refresher

backpack docker elasticsearch eloquent faker fluentd kibana laravel mysql nginx seeder

Last synced: about 2 months ago
JSON representation

Laravel学習用

Awesome Lists containing this project

README

        

# Laravel apps repo

## starting project

Duplicate `.env.default` and create `.env`. Then enter the credentials in `.env` in the mysql container env_file

First things first, run this command bellow to generate an App key. And paste it in `.env`.

```bash
docker-compose run --rm artisan key:generate
```

Next, Restore the dummy data to db using seeder.

```bash
docker-compose run --rm artisan migrate:fresh --seed
```

---

## Forum-only workaround

Only this project gets an error during dependency install (composer install) due to a problem caused by the table definition in the Service Provider .
So, need to comment out the boot method in `app/Providers/AppServiceProvider.php` and then run install command.