Skip to content

Nafisa1117/Task-Management-Application

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

Task Management Application

angular-logo SpringBoot-logo
I have made an Angular + SpringBoot "Task Management Application" web project. This is a solo project, and it took me one week to create it
using TypeScript/Java and other languages.

Live

Demo

Untitled.design.mp4

Introduction

  • Task management Application is a Web project.
  • Developed on Spring Boot(backend) with Angular(front-end) frameworks and MySql database.
  • “User” can delete, edit, add and check the completed tasks.
  • This web application is made secure and robust.

Tech Stacks

  • Angular
  • SpringBoot
  • Typescript
  • Java
  • MySQL
  • JPA
  • Rest API
  • HTML/CSS

Development Setup

Prerequisites

  • Install [Node.js] which includes [Node Package Manager][npm]

Setting Up a Frontend Project

Install the Angular CLI globally:

npm install -g @angular/cli

Create workspace:

ng new [PROJECT NAME]

Run the application:

cd [PROJECT NAME]
ng serve

Setting up a Backend project

For building and running the application you need:

Running the application locally

There are several ways to run a Spring Boot application on your local machine. One way is to execute the main method in the de.codecentric.springbootsample.Application class from your IDE.

Alternatively you can use the Spring Boot Maven plugin like so:

mvn spring-boot:run