Skip to content
This repository has been archived by the owner on Nov 19, 2018. It is now read-only.

Latest commit

 

History

History
39 lines (27 loc) · 738 Bytes

readme.md

File metadata and controls

39 lines (27 loc) · 738 Bytes

Installation

The project contains standard installation of Laravel 5.5, however you'll need to install / update dependancies via composer:

composer install && composer update

We also need to install js dependancies - to do so run:

npm install

Laravel uses mix to compile assets - to compile js/css assets into public files run:

npm run prod

As the installation runs on SQLite database contained within a file, make sure that your Apache supports it. You'll also need to create the file itself by running

Linux

touch database\database.sqlite

or

Windows

copy nul database\database.sqlite

Finally run migrations to populate the database structure, by running:

php artisan migrate