wovosoft/appbuilder

Laravel Application Builder

v1.0.2 2021-05-03 10:12 UTC

This package is auto-updated.

Last update: 2024-04-29 04:34:18 UTC


README

Latest Version on Packagist Total Downloads GitHub Actions

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.