Skip to content

Latest commit

 

History

History
23 lines (22 loc) · 490 Bytes

readme.md

File metadata and controls

23 lines (22 loc) · 490 Bytes

Illustration Website

A website designed to show off SquaredLabs Scientific Illustrations, as well as requesting new illustrations.

Setup

cp .env.example .env
#Add database configuration in .env

Then,

Developing

composer install
php artisan migrate --seed
php artisan serve

Docker

Edit .env, make sure DB_HOST=db

docker-compose up -d
docker-compose exec app composer install &&  
  php artisan key:generate && 
  php artisan migrate