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

https://github.com/fakorede/test


https://github.com/fakorede/test

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

### Install Dependencies

```
composer install
npm install && npm run dev
```

### Generate Application Key

```
php artisan key:generate
```

## .env Settings
### Database Settings

```
DB_DATABASE=laravel
DB_USERNAME=root
DB_PASSWORD=
```

### Mail Settings

```
MAIL_MAILER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
MAIL_USERNAME={gmail_username}
MAIL_PASSWORD={gmail_password}
[email protected]
MAIL_FROM_NAME="${APP_NAME}"
```

### Run Migrations

```
php artisan migrate
```

### Run App

```
php artisan serve
```