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

https://github.com/fakorede/jobable

Jobable is a job recruitment platform built with Laravel 7 and VueJS
https://github.com/fakorede/jobable

eloquent-orm laravel laravel-application laravel-framework php-framework php7 vuejs

Last synced: about 2 months ago
JSON representation

Jobable is a job recruitment platform built with Laravel 7 and VueJS

Awesome Lists containing this project

README

          

# Jobable

> Jobable is a job recruitment portal built on Laravel 7 and VueJS

### `.env` Configurations

### Configure database settings

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

### Configure Mailtrap

```
MAIL_MAILER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME={smtp_username}
MAIL_PASSWORD={smtp_password}
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=no-reply@jobable.com
MAIL_FROM_NAME="${APP_NAME}"
```

### Configure Gmail

```
MAIL_MAILER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
MAIL_USERNAME={gmail_username}
MAIL_PASSWORD={gmail_password}
MAIL_ENCRYPTION=tls
MAIL_FROM_NAME="${APP_NAME}"
```

### Run database migrations

```
php artisan migrate
```

### Generate fake data

```
php artisan db:seed
```

### Install Packages

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

### Run App

```
php artisan serve
```

## License

The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).