Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 671 Bytes

File metadata and controls

42 lines (32 loc) · 671 Bytes

Easy-Todo-App

Main

Create Todo

End Todo

Description

This is a simple todo-app built on Laravel 7 & VueJS for demonstration

How to install

Clone this repository, cd into the project folder and after this:

Do a composer install:

composer install

Then create a environment file:

cp .env.example .env

Create database named todo-app and run the migrations:

php artisan migrate

Install dependencies from npm:

npm install

Run server using this command:

php artisan serve

Run frontend:

npm run watch