TASK Management System Save

Spring Boot and Angular 7 web application for task management .

Project README

TASK-Management-System ( Demonstration Project )

Spring Boot and Angular 7 web application for task management .

Demo

DEMO

Introduction

  • Task management system is a demonstration web application developed for team project works where users can manage various tasks within a team easily.
  • Developed on Spring Boot(backend) with Angular v7 (front-end) frameworks and MySql database.
  • Project is focused primarily on handling document-based projects.
  • “User” can be a member of more than Programs. And one program can have any number of User members associated with it.
  • This web application is made secure and robust. I have implemented JWT-based Authentication on every APIs.
  • The project is in an early stage of development and needs lots of work and bug fixing to make it usable in real life. Still, learners can use this as template and make it functinal application.
  • I would be happy to see people contribute and enhance this project.

TODO:

  • Lots of UI/UX improvements.
  • New features like Program settings, custom project themes, use settings, and edit details.
  • UI improvements like pagination on task lists and user picker list.

Dependencies

  • Java 8 JDK
  • Embedded Tomcat 9 server
  • MySQL Database
  • Node Package Manager NPM
  • Maven

Installation

Backend

  • In Eclipse or similar IDE import the "backend" from this repo with option "import existing maven project".
  • Build the maven project to install all the required dependencies.
  • To setup database, install MySQL. Make any database.
  • Then update below three configuration fields in file application.properties inside /resources folder
spring.datasource.url=jdbc:mysql://localhost:3306/tms
spring.datasource.username=root
spring.datasource.password=root
  • For email services you need to use email via SMTP. For that you need to update application.properties below fields.
spring.mail.host=smtp.gmail.com
spring.mail.smtp.ssl.trust=smtp.gmail.com
spring.mail.port=587
spring.mail.transport.protocol=smtp
[email protected]
spring.mail.password=password`

Read Google SMTP common issues

  • Run the project from BackendApplication.java, all the tables will be initialised in database with its first run.
  • Now execute roles.sql on your database.

Frontend

  • You should have node.js installed on your system.
  • GOTO the path of frontend folder in comand-prompt and run npm start instead of ng serve because i have configured different port number for frontend.
  • Now your frontend will be hosted on http://localhost:8001 ,open this link in browser.(only for DEV)

You can connect to me at Linkedin

Report an issue here Gitter

Buy Me A Coffee

Open Source Agenda is not affiliated with "TASK Management System" Project. README Source: ayushman1024/TASK-Management-System