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
- Host: GitHub
- URL: https://github.com/fakorede/jobable
- Owner: Fakorede
- Created: 2020-06-20T18:03:05.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T09:26:28.000Z (over 3 years ago)
- Last Synced: 2025-04-23T10:51:38.374Z (about 1 year ago)
- Topics: eloquent-orm, laravel, laravel-application, laravel-framework, php-framework, php7, vuejs
- Language: HTML
- Homepage: https://jobable.herokuapp.com/
- Size: 4.31 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 33
-
Metadata Files:
- Readme: README.md
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).