Skip to content

Zzzul/for-um

Repository files navigation

FOR-UM

Mini forum built on Laravel.

Demo

Here

What inside?

Installation

Clone or download this repository

$ git clone https://github.com/Zzzul/for-um.git

Install all dependencies

# install laravel dependency
$ composer install

Generate app key, configure .env file and do migration.

# create copy of .env
$ cp .env.example .env

# set .env email for notification 
$ MAIL_MAILER=smtp
$ MAIL_HOST=smtp.mailtrap.io
$ MAIL_PORT=2525
$ MAIL_USERNAME=YOUR_USERNAME
$ MAIL_PASSWORD=YOUR_PASSWORD
$ MAIL_ENCRYPTION=tls
$ MAIL_FROM_ADDRESS="[email protected]"
$ MAIL_FROM_NAME="${APP_NAME}"

# set queue connection
$ QUEUE_CONNECTION=database

# create laravel key
$ php artisan key:generate

# laravel migrate
$ php artisan migrate

# Start local development server
$ php artisan serve

# run queue on other terminal
$ php artisan queue:work

License

MIT