Management Errata is a web interface for managing vulnerabilities. This interface allows you to create, edit and change Errata, and also view the change history.
  • TypeScript 98.5%
  • CSS 0.8%
  • JavaScript 0.5%
  • Dockerfile 0.1%
Find a file
2026-05-12 14:25:42 +03:00
.husky chore: migrate to Vitest and remove Babel 2025-12-23 10:50:00 +03:00
nginx fix: configure cache headers and disable HTML caching 2026-02-20 13:52:55 +03:00
public feat: add dynamic document title management 2025-11-28 16:53:52 +03:00
src feat(documentation): introduce full documentation module with navigation, parsing, and rendering 2026-05-12 11:49:05 +03:00
webpack refactor: replace absolute /usr/lib imports with module alias for alt-releases-matrix-ts 2026-03-12 14:50:34 +03:00
.dockerignore docker: Dockerizing App for Development and Production 2023-09-26 14:57:07 +03:00
.env.example docs: add new env variables 2025-10-27 11:00:05 +03:00
.gitignore chore(deps): add package-lock.json and track it in repository 2026-04-08 13:10:22 +03:00
.prettierrc refactor: add prettier, config and format project 2025-11-19 16:12:52 +03:00
0001-record-architecture-decisions.md docs: add architecture decision record (ADR) for technology stack 2025-11-14 11:23:01 +03:00
CHANGELOG.md bump version v2.2.0 -> v2.3.0 2026-03-26 17:02:51 +03:00
CODESTYLE.md docs: add code style guide 2025-11-13 17:10:46 +03:00
docker-compose.yml update Docker configuration 2024-05-06 15:28:03 +03:00
Dockerfile chore: remove swagger-typescript-api dependency and script 2025-11-21 16:33:05 +03:00
eslint.config.ts feat: improve build configuration and CSS processing 2026-02-03 15:16:09 +03:00
orval.config.ts feat(orval): introduce automatic QUERY_PARAMS generation for endpoints 2026-04-29 13:08:07 +03:00
package-lock.json chore: add react-window dependency 2026-04-22 10:06:39 +03:00
package.json chore: add react-window dependency 2026-04-22 10:06:39 +03:00
README.md add README.md 2023-10-13 16:40:00 +03:00
stylePaths.js feat: improve build configuration and CSS processing 2026-02-03 15:16:09 +03:00
tsconfig.json refactor: replace absolute /usr/lib imports with module alias for alt-releases-matrix-ts 2026-03-12 14:50:34 +03:00
vitest.config.ts refactor: replace absolute /usr/lib imports with module alias for alt-releases-matrix-ts 2026-03-12 14:50:34 +03:00

Management Errata

Management Errata is a web interface for managing vulnerabilities.
This interface allows you to create, edit and change Errata, and also view the change history.

License

GNU AGPLv3

Dependencies

@patternfly/patternfly: ^5.0.2
@patternfly/react-core: ^5.0.0
@patternfly/react-icons: ^5.0.0
@patternfly/react-styles: ^5.0.0
@patternfly/react-table: ^5.0.0
@testing-library/jest-dom: ^5.17.0
@testing-library/react: ^13.4.0
@testing-library/user-event: ^13.5.0
@types/jest: ^27.5.2
@types/node: ^16.18.39
@types/react: ^18.2.16
@types/react-dom: ^18.2.7
@typescript-eslint/eslint-plugin: ^6.2.1
axios: ^1.4.0
eslint-config-react-app: ^7.0.1
html-webpack-plugin: ^5.5.3
jwt-decode: ^3.1.2
mobx: ^6.10.2
mobx-react: ^9.0.0
moment: ^2.29.4
process: ^0.11.10
react: ^18.2.0
react-dom: ^18.2.0
react-router-dom: ^6.14.2
react-scripts: ^2.1.3
web-vitals: ^2.1.4

Starting application

The web application runs using the Webpack module bundler
and software to automate the deployment and management
of applications in Docker containerized environments.

Configuration file

Create a .env file based on the .env.example file:

cat .env.example > .env

The configuration file contains:

REACT_APP_API_URL=                      # API URL
SESSION_DRIVER=cookie                   # How to store session data
REACT_APP_ACCESS_TOKEN_KEY=accessToken  # Key in local storage for storing access token
NODE_ENV=development                    # Node environment (development | productionи)
APP_PORT=3030                           # Application port

Run Docker container

You can start a container using the Deploy.sh script, which supports the following commands:

# Build and start prodaction or development container.
./deploy.sh prod|dev build

# Start container.
./deploy.sh prod|dev up

# Stop container.
./deploy.sh prod|dev down