Skip to content

ljoboy/task-mgt

Repository files navigation

Task Management

This is a simple task management system that allows you to create, read, update, delete and reorder (drag and drop) tasks. Created with Laravel 10 and Vue 3 (Composition API)

Installation

Step 1 : Clone the repository

git clone https://github.com/task-mgt.git

Step 2 : Switch to the repo folder

cd task-mgt

Step 3 : Copy the example env file and make the required configuration changes in the .env file

cp .env.example .env

Step 4 : Create an empty database for our application

Create a database then update the .env file with the database name, username and password

Composer, Artisan and NPM commands

Install dependencies

composer install

Generate a new application key

php artisan key:generate

Migrate the database

php artisan migrate

Install node modules

npm install

Build assets

npm run build

Start the local development server

php artisan serve

To test the application (Laravel Part)

php artisan test

Or use make commands (if you have make installed)

Install dependencies (after step 4)

make

You can now access the server at http://localhost:8000

You can read the make commands in the Makefile

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published