Recstart is laravel starterkit project to make your work easier when starting a new project.
- Laravel - Main Framework
- ReactJS - Front End Library
- shadcn/ui - Component Library
- Tailwind CSS - Styling Utility
- InertiaJS - Back End to Front End Connector
Clone this repository with this syntax
git clone https://github.com/adheramaf7/recstart.git
Download PHP Packages
composer install
Duplicate .env.example and rename it to .env or you can just run this syntax to do it
cp .env.example
Fill APP_KEY value in **.env ** file with this syntax
php artisan key:generate
Run migration and seeder to create database table and seed application starting data with this syntax. Make sure you have setting up database connection in .env file before running it.
php artisan migrate:fresh --seed
Download Node Modules
npm install
Build the frontend assets script using this syntax
npm run build
OR just run this syntax if you want to run it in development mode.
npm run dev
Email: superadmin@mail.com
Password: superadmin
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.