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.
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).