Skip to content

Latest commit

 

History

History
65 lines (43 loc) · 1.16 KB

README.md

File metadata and controls

65 lines (43 loc) · 1.16 KB

The Source Code of Cornerstone

Tests Styling Linting

Installation

Install Dependencies

composer install
npm install && npm run dev

Configure Environment

First copy .env.example to .env

cp .env.example .env

Then edit database configurations to match your local setup

Run Migrations

php artisan migrate:fresh --seed --path=database/migrations/landlord --database=landlord

Then install the icons

php artisan install:icons

After that is finished you can generate an app key

php artisan key:generate

Run Tests

php artisan test

And finally serve your application!

php artisan serve

Seeding the database

Optionally you way seed the database with the following command

php artisan migrate:fresh --seed --path=database/migrations/landlord --database=landlord