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

FinDo est une application qui révolutionne votre manière de vivre vos activités

Notifications You must be signed in to change notification settings

finDo-dev-team/finDo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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