- Bogdan Protasenko -
Team Lead
- Igor Nagrebelnyi -
Scrum Master
Developers:
- Anastasiia Sidorova
- Andrii Zubko
- Andrii Bezkrovnyi
- Lesia Melaverde
- Marta Shchur
- Artem Satanovskiy
- Galina Oryniak
- Valentyna Kyryliuk
- Olga Sharhorodska
Links to the Figma layout of the project "PRO TASK"
Here are some of the key technologies used in this project:
For detailed descriptions of API requests and interactions, refer to the
link to Swagger
Link to Website (full version)
This application allows the user to plan tasks and track their progress.
The application functionality allows you to create a nested structure:
- Work direction;
- Subdirections;
- Task cards by subdirections.
- All these elements can be edited and deleted.
The functionality of the cards allows you to change:
- Name;
- Description;
- Priority;
- End date for task completion;
- Moving to another subdirection.
If the task must be completed today, a colored bell appears on the card.
Before getting started with the project, make sure you have the following tools installed on your computer:
- Node.js (version 12 or higher)
- Clone this repository to your local computer.
- Open the terminal and navigate to the root folder of the project.
- Run the command
npm install
to install project dependencies.
- Create a .env file in the project's root folder, based on the .env.example file.
- Specify the necessary environment variables in this file.
npm:
npm start
— Start the server in production mode.npm run start:dev
— Start the server in development mode.npm run lint
— Run code linting using eslint. Perform this before each PR and fix all linting errors.npm run lint:fix
— Similar to lint command, but automatically fixes simple linting errors.