bishopm / bible
Laravel-based bible site
dev-master / 1.0.x-dev
2021-02-04 04:33 UTC
Requires
- illuminate/support: 8.*
- laravel/ui: 2.*
- laravelcollective/html: 6.*
- spatie/laravel-tags: 2.*
This package is auto-updated.
Last update: 2024-10-04 11:56:16 UTC
README
License
The MIT License (MIT). Please see License File for more information.
Installation
- Install laravel using Composer (eg: to create a project named connexion:
laravel new connexion
) - Change to the project folder created and fix permissions on bootstrap and storage folders:
sudo chmod -R 777 storage
sudo chmod -R 777 bootstrap
- Check the Laravel installation is running properly before proceeding.
- Add the bible package to composer.json
- Run composer update in the project folder, which will pull in the package and its dependencies
- Add your database credentials to .env
- Add Bishopm\Bible\Providers\BibleServiceProvider::class at the bottom of the list of providers in config/app.php (We're not using Laravel's package auto-discovery at the moment because it creates problems with some of the package routes)