Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zzzul/for-um
Simple forum built on Laravel.
https://github.com/zzzul/for-um
bootswatch forum hacktoberfest hacktoberfest2021 laravel laravel-framework php
Last synced: 25 days ago
JSON representation
Simple forum built on Laravel.
- Host: GitHub
- URL: https://github.com/zzzul/for-um
- Owner: Zzzul
- License: mit
- Created: 2021-06-29T07:15:02.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-02T01:44:01.000Z (almost 2 years ago)
- Last Synced: 2024-05-02T03:11:25.325Z (6 months ago)
- Topics: bootswatch, forum, hacktoberfest, hacktoberfest2021, laravel, laravel-framework, php
- Language: PHP
- Homepage: https://forum.demo-web-fahmi.my.id/
- Size: 2.9 MB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FOR-UM
Mini forum built on Laravel.## Demo
[Here](https://laravel-for-um.herokuapp.com/)## What inside?
- Laravel ^8.x - [Laravel 8](https://laravel.com/docs/8.x)
- Laravel UI ^3.x - [Laravel/ui](https://github.com/laravel/ui/tree/3.x)
- Bootswatch ^4.x (Bootstrap custom theme) - [Bootswatch/4/lumen](https://bootswatch.com/4/lumen/)## Installation
Clone or download this repository
```shell
$ git clone https://github.com/Zzzul/for-um.git
```Install all dependencies
```shell
# install laravel dependency
$ composer install
```Generate app key, configure `.env` file and do migration.
```shell
# 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