To run this project, ensure you have the following prerequisites:
- PHP 7.3 or higher
- Composer
- Node.js 18
Follow these steps to get started:
-
Clone the repository:
git clone https://github.com/H-pun/bookshelf cd bookshelf -
Install PHP dependencies:
composer install
-
Install Node.js dependencies:
npm install
-
Set up environment variables: Copy the
.env.examplefile to.envand update the necessary configurations.cp .env.example .env
-
Generate application key:
php artisan key:generate
-
Run database migrations:
php artisan migrate
-
Seed the database:
php artisan db:seed
-
Start the development server:
php artisan serve
Your Laravel application should now be running on http://localhost:8000.
The Laravel framework is open-sourced software licensed under the MIT license.