Scrum_ally

keep growing logo

Scrum_ally is a web application designed for project management. This project is a multi-module app, built with Spring Boot and Angular. It can be built into a single jar file using Maven.

Backend analysis

Quality Gate Status Maintainability Rating Reliability Rating Security Rating

Bugs Coverage Vulnerabilities Code Smells Technical Debt

GitHub

Overview and technical features

dashboard

The project currently supports creating and managing tasks for multiple projects.

Some of the more interesting technologies used are:

Getting Started

To clone this repository, execute the following in the command line:

$ git clone https://github.com/little-pinecone/scrum-ally.git

You can build the application with:

$ mvn clean install

To run fronted separately, on localhost:4200, got to the /frontend/src/main/angular directory and run:

$ npm start

Database

Use the attached docker-compose.yml file and run:

$ docker-compose up -d

Migrations

Create a test user

POST Endpoint:

http://localhost:8080/api/users

Body:

{
    "userCredentials": {
        "username": "user",
        "password": "test"
    }
}

Running tests

Run all backend tests with the following command in the root directory:

$ mvn test

Run all frontend tests with the following command in the frontend/src/main/angular directory:

$ ng test

Sonarqube

If you want to generate a SonarQube report locally:

API documentation

To see the API docs generated by Swagger build and run the application, and visit the http://localhost:8080/swagger-ui/ link in your browser.

Add the CSRF token to request from Postman

var xsrfCookie = postman.getResponseCookie("XSRF-TOKEN");
pm.globals.set('csrftoken', xsrfCookie.value);

add csrf to postman screenshot

add csrf to postman screenshot

Built With

Screenshots

landing page dashboard project list project details side navigation login page

To do

License

This project is licensed under the Unlicense - see the license details.