Skip to content

Latest commit

 

History

History
49 lines (43 loc) · 1.09 KB

README.md

File metadata and controls

49 lines (43 loc) · 1.09 KB

Beetroot Family Portal

Build Status StyleCI

This is the repository for the family.beetroot.se portal.

Getting started

Installation

  1. Clone this repository:
git clone https://github.com/nikolaynizruhin/beetroot-portal.git
  1. Copy .env file and update it with your variables:
cp .env.example .env
  1. Install composer dependencies:
composer install
  1. Install and compile npm dependencies:
npm install && npm run dev
  1. Migrate database (--seed optional):
php artisan migrate --seed
  1. Generate app key:
php artisan key:generate
  1. Create a symbolic link from public/storage to storage/app/public:
php artisan storage:link
  1. Create default employee avatar and client logo:
storage/public/avatars/default.png
storage/public/logos/default.png

Testing

vendor/bin/phpunit