Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.31 KB

README.md

File metadata and controls

31 lines (22 loc) · 1.31 KB

Task Manager

Task Manager – task management system based on Spring. It allows you to set tasks, assign executors and change their statuses. Registration and authentication are required.

Java CI Maintainability Test coverage

Tasks

Quick start

The following commands prepare and run Task Manager.

mkdir src/main/resources/certs

# Generate RSA keys
openssl genrsa -out src/main/resources/certs/private.pem 2048
openssl rsa -in src/main/resources/certs/private.pem -outform PEM -pubout -out src/main/resources/certs/public.pem

# Build & run
./gradlew build
./gradlew bootRun

After that you can access it on localhost:8080 (use default credentials: [email protected]:qwerty).