/istqbright-laravel

A Laravel-based test application tailored for ISTQB (International Software Testing Qualifications Board) exam preparation, providing a user-friendly interface for practice

Primary LanguageJavaScript

About Laravel

Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:

Laravel is accessible, powerful, and provides tools required for large, robust applications.

Setting Up ISTQBright App

Follow these steps to set up application:

  1. Install Dependencies:

    composer install
  2. Setup Env File:

    cp .env.example .env
  3. Create SQL Database:

    Ensure you have a SQL database set up. Update the .env file with your database credentials.

  4. Run Migrations::

    php artisan migrate
    
  5. Seed Database (Optional):

    php artisan db:seed
  6. enerate Application Key:

    php artisan key:generate
  7. Start the Development Server:

    php artisan serve