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