Skip to content

Latest commit

 

History

History
66 lines (45 loc) · 938 Bytes

File metadata and controls

66 lines (45 loc) · 938 Bytes

📚 Laravel Book Catalog Timedoor Technical Test Project

This is a Laravel-based technical test project


🚀 Requirements

  • PHP >= 8.1
  • Composer
  • MySQL Database
  • Laravel >= 10.x

🛠️ Installation Steps

1. Clone the Repository

git clone https://github.com/AnantaWeda/Technical-Test.git
cd Technical-Test

2. Install PHP Dependencies

composer install

3. Copy & Set Environment File

cp .env.example .env

4. Configure .env File

Edit your .env file and set the correct database credentials like:

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=your_database_name
DB_USERNAME=your_username
DB_PASSWORD=your_password

5. Generate Application Key

php artisan key:generate

6. Run Migrations & Seeder

php artisan migrate --seed

7. Serve the Application

php artisan serve