https://github.com/nejcc/kick-start
Prepare for laravel kickstart configuration
https://github.com/nejcc/kick-start
Last synced: about 1 month ago
JSON representation
Prepare for laravel kickstart configuration
- Host: GitHub
- URL: https://github.com/nejcc/kick-start
- Owner: Nejcc
- Created: 2020-02-20T12:41:08.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-01T19:36:28.000Z (over 3 years ago)
- Last Synced: 2025-08-06T05:37:40.119Z (10 months ago)
- Language: PHP
- Size: 70.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nejcc/kick-start prepare for laravel
## Installation
#### 1. Laravel last version
```
composer create-project --prefer-dist laravel/laravel blog
```
#### 2. Laravel ui scaffolding
```
composer require laravel/ui
```
```
php artisan ui:auth or use my package for tailwind before continue
```
```
composer require nejcc/kickStart
```
#### 3. Run command
##### This command will modify and change following files:
* app/
* http/
* middlewares/
* Localization.php [add]
* Models/
* Role.php [add]
* User.php [overrid]
* Providers/
* AuthServicePeovider.php [overrid]
* database/
* migration/
* user [overided]
* roles [add]
* roles_user [add]
* foren_roles_user [add]
* seeds/
* DatabaseSeeder.php [override]
* RoleTableSeeder.php [add]
* UserTableSeeder.php [add]
* database.sqlite
* routes/
web.php [append]
* .env [override]
NOTICE!: Before running this command make sure you have saved your work!
```
php artisan ui kickstart
```
#### 4. serve (optional)
```
php artisan serve
```
or
```
php artisan serve --port 8888
```