diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..a05ebac5 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,53 @@ + +## Fixes + + + +## Description + + + +## Type of change + + +- [ ] Feature +- [ ] Bugfix +- [ ] Code style update (formatting, renaming) +- [ ] Refactoring (no functional changes, no api changes) +- [ ] Build related changes +- [ ] Documentation content changes +- [ ] Other (please describe): + +## Screen shots / Gifs for design review + + + +## How to test or reproduce? + + + + + + + + +## Browser conformance: + +- [ ] Chrome +- [ ] Firefox +- [ ] Safari +- [ ] Edge + + + + + \ No newline at end of file diff --git a/README.md b/README.md index c219aa56..f2e7c698 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,10 @@ UI for [Konflux](https://github.com/konflux-ci/konflux-ci) ### Installing +**Prerequisites:** +- Node.js version >= 20 +- Yarn version 1.22 + A step by step series of examples that tell you how to get a development environment running: 1. Clone the repository diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 00000000..8758666e Binary files /dev/null and b/public/favicon.ico differ diff --git a/webpack.config.js b/webpack.config.js index 8719c6c2..1a3c3479 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -21,7 +21,9 @@ export default { }, ], }, - plugins: [new HtmlWebpackPlugin({ template: './public/index.html' })], + plugins: [ + new HtmlWebpackPlugin({ template: './public/index.html', favicon: './public/favicon.ico' }), + ], optimization: { moduleIds: 'deterministic', runtimeChunk: 'single',