From 50ddd90cfce3bfd519ff3444993ff8b50aa9c478 Mon Sep 17 00:00:00 2001
From: xdvora19 <xdvora19@fi.muni.cz>
Date: Fri, 3 May 2024 11:53:04 +0200
Subject: [PATCH] fix minor issues preventing CI pipeline

---
 .gitignore                         | 2 +-
 docs/tech/installation/overview.md | 2 +-
 mkdocs.yml                         | 2 +-
 utilities.sh                       | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.gitignore b/.gitignore
index 9cce52a..0dcd7c4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,7 +1,7 @@
 # mkdocs documentation
 site/
 docs/tech/architecture/definitions.md
-docs/tech/CHANGELOG.md
+docs/tech/architecture/CHANGELOG.md
 docs/tech/installation/back-README.md
 docs/tech/installation/front-README.md
 docs/tech/api/openapi.yml
diff --git a/docs/tech/installation/overview.md b/docs/tech/installation/overview.md
index c864d22..3f47e2d 100644
--- a/docs/tech/installation/overview.md
+++ b/docs/tech/installation/overview.md
@@ -7,4 +7,4 @@ The frontend of the INJECT project is responsible for providing a user-friendly
 
 The backend of the INJECT project handles data management, authentication, and running the INJECT project. To begin setting up the backend environment and running the backend server, follow the instructions outlined in the [Backend Installation Guide](back-README.md). This guide provides detailed steps for installing dependencies, configuring the backend, and deploying the backend server.
 
-By following the installation guides for both the frontend and backend components, you'll be able to successfully set up and run the INJECT project. If you encounter any issues or need further assistance, please check out our [FAQ](TBA). Additionally, if you encounter any bugs or require further assistance, don't hesitate to report them to us. The [FAQ](TBA) includes instructions on how to report bugs.
+By following the installation guides for both the frontend and backend components, you'll be able to successfully set up and run the INJECT project. If you encounter any issues or need further assistance, please check out our [FAQ](../../faq.md). Additionally, if you encounter any bugs or require further assistance, don't hesitate to report them to us. The [FAQ](../../faq.md) includes instructions on how to report bugs.
diff --git a/mkdocs.yml b/mkdocs.yml
index a850071..ef5e731 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -31,7 +31,7 @@ nav:
       - Overview: tech/api/overview.md
       - Graphql Documentation: tech/api/graphql-docs.md
       - Swagger REST documentation: tech/api/swagger-docs.md
-    - Changelog on backend: tech/CHANGELOG.md
+    - Changelog on backend: tech/architecture/CHANGELOG.md
   - FAQ: faq.md
   - Glossary of Terms: glosary-of-terms.md
   - Authors: authors.md
diff --git a/utilities.sh b/utilities.sh
index 0e4be91..7f6720e 100755
--- a/utilities.sh
+++ b/utilities.sh
@@ -4,7 +4,7 @@ git submodule update --remote
 
 mkdir -p docs/tech
 cp ./backend/definitions/README.md ./docs/tech/architecture/definitions.md
-cp ./backend/CHANGELOG.md ./docs/tech/CHANGELOG.md
+cp ./backend/CHANGELOG.md ./docs/tech/architecture/CHANGELOG.md
 cp ./backend/INSTALATION.md ./docs/tech/installation/back-README.md
 cp ./frontend/README.md ./docs/tech/installation/front-README.md
 cp ./backend/openapi.yml ./docs/tech/api/openapi.yml
-- 
GitLab