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