The starter project for Laravel applications. It is a base Laravel installation with some additional packages and basic setup. It comes with:
- Basic layout setup with a collapsible navigation
- Disabled mass-assignment protection in the base model
- Vue.js and the renderless-vue-components package
- Tailwind CSS with Purgecss setup
- Laravel Telescope
- Error tracking with Sentry
- Database backups with spatie/laravel-backup
- Media handling with spatie/laravel-medialibrary
- Marking links as active with laravelista/ekko
- Good open graph tags setup
- A cookies popup
Inspired in part by michaeldyrynda/founder and spatie/spoon.
Clone the repository:
git clone https://github.com/pawelmysior/laravel-starter.git
Install the composer dependencies:
composer install
Copy the .env.example
file:
cp .env.example .env
Set the application key:
php artisan key:generate
Install npm dependencies:
npm install
Compile assets:
npm run dev
- Set the database configuration in the
.env
file. - Set the Dropbox token for Dropbox backups in the
.env
file. - Set the Sentry DSN in the
.env
file. - Set the Google Analytics ID in the
.env
file. - Set the timezone and locale in the
config/app.php
file.
The MIT License (MIT). Please see License File for more information.