-
Notifications
You must be signed in to change notification settings - Fork 1
Installation
Anton Raharja edited this page Apr 30, 2024
·
4 revisions
-
Get from github
git clone https://github.com/antonraharja/laravel-starter starter`
-
Enter installation path and edit
.env
In
.env
you need to edit at leastAPP_NAME
APP_URL
andDB_*
cd starter cp .env.example .env nano .env
-
Install composer packages
composer install
-
Generate key
php artisan key:generate
-
Install database tables with some starter contents and setup admin's password
php artisan migrate:fresh --seed
-
Depend on your installation you may need below actions
Adjust storage file permissions:
sudo find storage/ bootstrap/ -type f -exec chmod 666 {} \;
And, adjust storage directory permissions:
sudo find storage/ bootstrap/ -type d -exec chmod 777 {} \;