Skip to content
This repository has been archived by the owner on Jan 10, 2022. It is now read-only.

Latest commit

 

History

History
51 lines (29 loc) · 1.28 KB

README.md

File metadata and controls

51 lines (29 loc) · 1.28 KB

FinDo

build codecov Maintainability Test Coverage

Setup

Make sure you have Composer installed on your machine and check server requirement here.

Clone repository

git clone https://github.com/jestin-g/finDo

Go to the created folder

cd findo

Install composer dependencies

composer install

Copy env file example and setup your database connection

cp .env.example .env

Generate a key

php artisan key:generate

Install node dependencies

npm install

Compile assets

npm run dev

or (for developing)

npm run watch-poll

Migrate database

php artisan migrate

Seed database

php artisan db:seed

Launch local development server

php artisan serve