Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tarikulwebx/project-management-system
Projects and tasks management system developed as a demo.
https://github.com/tarikulwebx/project-management-system
inertiajs laravel-framework laravel11 reactjs
Last synced: 5 days ago
JSON representation
Projects and tasks management system developed as a demo.
- Host: GitHub
- URL: https://github.com/tarikulwebx/project-management-system
- Owner: tarikulwebx
- Created: 2024-05-02T16:21:09.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-05-02T16:36:44.000Z (6 months ago)
- Last Synced: 2024-05-03T02:45:07.084Z (6 months ago)
- Topics: inertiajs, laravel-framework, laravel11, reactjs
- Language: PHP
- Homepage:
- Size: 206 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Project Management System
A simple project management application using Laravel 11 and React.
## Features
1. Registration & Login
2. Projects CRUD with sorting, filtering and pagination
3. Tasks CRUD with sorting, filtering and pagination
4. Create Tasks inside project
5. Show all tasks or show tasks for a specific project
6. Assign users to tasks
7. View Tasks assigned to me
8. Show dashboard with overview information## Installation
1. Clone the project
2. Navigate to the project's root directory using terminal
3. Create `.env` file - `cp .env.example .env`
4. Execute `composer install`
5. Execute `npm install`
6. Set application key - `php artisan key:generate --ansi`
7. Execute migrations and seed data - `php artisan migrate --seed`
8. Start vite server - `npm run dev`
9. Start Artisan server - `php artisan serve`