/taskr

simple task management application using Laravel

Primary LanguagePHP

Taskr

Taskr is a simple task management application using Laravel

Installation

Clone the repository

git clone https://github.com/SlimGee/taskr.git

Or extract the zip file

tar -xvf taskr.zip

Cd into the project directory and install composer dependencies

cd taskr

Composer

composer install --prefer-dist

Install NPM dependencies

yarn install

Create a copy of your .env file and add your database credentials

cp .env.example .env

Migrate the database and start the artisan server

php artisan serve

Create an account and start adding tasks!

You can also use the following command to seed the database with dummy data

php artisan db:seed TaskSeeder

Don't forget to run the following command to compile your assets

yarn dev

or

yarn build