wovosoft / appbuilder
Laravel Application Builder
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
Language:Vue
Requires
- php: ^7.4|^8.0
- illuminate/support: ^8.0
Requires (Dev)
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.0
- spatie/html-element: ^1.1
This package is auto-updated.
Last update: 2024-10-29 05:47:30 UTC
README
This laravel package is used to create basic scaffolding of a Laravel Application. It installs required dependencies and configures everything out of the box.
Installation
The package uses default authentication provided by https://github.com/laravel/breeze
So, first you need to follow the instructions of Laravel Breeze
. Then, follow the next steps.
You just need this package during development, so
it can be installed via composer with --dev
flag:
composer require wovosoft/appbuilder --dev
Usage
Run the following command. This will copy and configure all the required dependencies and configurations.
php artisan builder:install
If Everything runs smoothly, configure database in .env
file. Then run the following commands:
php artisan storage:link php artisan migrate --seed
The last command will seed default users and roles.
Browse the application. Use following user credentials to login:
Email: admin@gmail.com Password: admin12346789
Dependencies
- Vuejs
- Bootstrap Vue
Testing
composer test
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email wovosoft@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.