Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.06 KB

File metadata and controls

37 lines (28 loc) · 1.06 KB

Installation Guide

Prerequisites

  • Laravel >= 10
  • PHP: Ensure PHP is installed (version 7.3 or higher).
  • Composer: Install Composer.
  • Node.js: Install Node.js.
  • Database of your choice, default is sqlite

Installation Steps

  1. Install App:
    composer create-project flightsadmin/flightadmin

This will install package from Latest Version on Packagist and complete all settings

  1. Configure .env with database credentials, app URL, etc.

  2. Run database migrations:

    php artisan migrate --seed
  3. Start the application:

    php artisan serve
  4. Default Login

     Username: `test@example.com`
     Password: `password`

If you're deploying to a server, you will need to configure a web server like Nginx or Apache to serve the Laravel application.