Local installation checklist
For a local test install, clone the repository, install PHP and Node dependencies, copy the environment file, generate an application key, configure the database, and run the migrations with seed data.
git clone https://github.com/SveinT83/Nexum-PSA.git
cd Nexum-PSA
composer install
npm install
cp .env.example .env
php artisan key:generate
php artisan migrate --seed
npm run dev
php artisan serve
The local application is then normally available at http://127.0.0.1:8000. Review the README before exposing the application beyond a local test environment.