Skip to content

Latest commit

 

History

History
30 lines (30 loc) · 988 Bytes

File metadata and controls

30 lines (30 loc) · 988 Bytes

SimpleTaskManager

Description

Client-server application for easy orginizing tasks that need to be completed. Application was created using Protobuf and GRPC libraries.

Features

  • Tasks priority
  • Subtasks
  • Multiple client support

Installation

Linux and MacOS using CMake

  1. Install CMake, minimum version: 3.16
  2. Install libraries:
  3. Build from source:
git clone https://github.com/KharchenkoMaks/SimpleTaskManager.git
cd SimpleTaskManager
mkdir build
cd build
cmake ..
cmake --build .
  1. Launch server:
    • ./server
  2. Launch client:
    • ./client

Server deployment in Docker

Repository contains Dockerfile to compile Docker image for server deployment.