From 5de1f539627e5cfbdcbfca7480aaf92c3e56c72f Mon Sep 17 00:00:00 2001 From: jorge Date: Sat, 27 Apr 2024 18:12:30 +0200 Subject: [PATCH 1/3] Fixed the typo in 10.2 --- docs/src/10_quality_requirements.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/10_quality_requirements.adoc b/docs/src/10_quality_requirements.adoc index 8f9ace78..adc04fda 100644 --- a/docs/src/10_quality_requirements.adoc +++ b/docs/src/10_quality_requirements.adoc @@ -62,7 +62,7 @@ In any case the tree should include links to the scenarios of the following sect | The personal information of a user will only be viewable by him/her and user data must be stored securely. | Performance -| The application must not have fast response times. +| The application must have fast response times. | Robustness | The application must answer as expected under all conditions. From 03982c7be8d93fc9ef851876a1dfa9dd6c3b7dcc Mon Sep 17 00:00:00 2001 From: jorge Date: Sat, 27 Apr 2024 18:19:02 +0200 Subject: [PATCH 2/3] Updated the used technologies documentation --- docs/src/04_solution_strategy.adoc | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/docs/src/04_solution_strategy.adoc b/docs/src/04_solution_strategy.adoc index c6bdb431..43445445 100644 --- a/docs/src/04_solution_strategy.adoc +++ b/docs/src/04_solution_strategy.adoc @@ -34,12 +34,11 @@ See https://docs.arc42.org/section-4/[Solution Strategy] in the arc42 documentat The technologies chosen for developing the WIQ web app are :: * **ReactJS** : A JavaScript library that facilitates the creation of interactive grafical interfaces. -* **Sass** : A scripting language that is compiled into CSS. It extends CSS by providing several mechanisms such as variables, nested rules, mixins, functions, and inheritance. (Not used) -* **TypeScript** : A superset of JavaScript that adds various features that can resolve code errors before running the actual code. (Not used) -* **SpringBoot** : An extension of the Spring framework for creating Java applications. SpringBoot offers many preconfigurations that accelerate the code production process. (Not used) + * **Wikidata Toolkit** : Wikidata Toolkit is a Java library for accessing Wikidata and other Wikibase installations. It can be used to create bots, to perform data extraction tasks (e.g., convert all data in Wikidata to a new format), and to do large-scale analyses that are too complex for using a simple SPARQL query service. + * **Docker** : Docker provides tools and a runtime environment to manage these containers efficiently, allowing developers to build, ship, and run applications consistently across different environments. -* **MySql** : MySQL is an open-source relational database management system that uses SQL for managing and manipulating data. (Not used) + * **Mongo DB** : MongoDB is a popular open-source NoSQL database management system that stores data flexible, JSON-like documents with dynamic schemas. * **Express** : Express is a minimal and flexible Node.js web application framework that provides a robust set of features for building web and mobile applications. @@ -48,10 +47,15 @@ The technologies chosen for developing the WIQ web app are :: * **Java** : Java is a high-level, object-oriented programming language developed by Sun Microsystems. It is known for its portability, security features, and wide range of applications, from mobile to enterprise systems. -* **TO BE ORGANIZED** +This decisions were eventually discarded :: +* **Sass** : A scripting language that is compiled into CSS. It extends CSS by providing several mechanisms such as variables, nested rules, mixins, functions, and inheritance. (Not used) + +* **TypeScript** : A superset of JavaScript that adds various features that can resolve code errors before running the actual code. (Not used) +* **SpringBoot** : An extension of the Spring framework for creating Java applications. SpringBoot offers many preconfigurations that accelerate the code production process. (Not used) +* **MySql** : MySQL is an open-source relational database management system that uses SQL for managing and manipulating data. (Not used) === Top-level Decomposition From 1a8ae35c7a8b4c85d42719e2a59ad18d19ba3a1b Mon Sep 17 00:00:00 2001 From: jorge Date: Sat, 27 Apr 2024 18:33:58 +0200 Subject: [PATCH 3/3] Reordering the technologies to a more logical sequence --- docs/src/04_solution_strategy.adoc | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/src/04_solution_strategy.adoc b/docs/src/04_solution_strategy.adoc index 43445445..8d84e92d 100644 --- a/docs/src/04_solution_strategy.adoc +++ b/docs/src/04_solution_strategy.adoc @@ -33,29 +33,29 @@ See https://docs.arc42.org/section-4/[Solution Strategy] in the arc42 documentat === Technology decisions The technologies chosen for developing the WIQ web app are :: -* **ReactJS** : A JavaScript library that facilitates the creation of interactive grafical interfaces. +* **Java** : Java is a high-level, object-oriented programming language developed by Sun Microsystems. It is known for its portability, security features, and wide range of applications, from mobile to enterprise systems. -* **Wikidata Toolkit** : Wikidata Toolkit is a Java library for accessing Wikidata and other Wikibase installations. It can be used to create bots, to perform data extraction tasks (e.g., convert all data in Wikidata to a new format), and to do large-scale analyses that are too complex for using a simple SPARQL query service. +* **Nodejs** : Node.js is an open-source, cross-platform JavaScript runtime environment that executes JavaScript code outside of a web browser, allowing developers to build scalable network applications. -* **Docker** : Docker provides tools and a runtime environment to manage these containers efficiently, allowing developers to build, ship, and run applications consistently across different environments. +* **ReactJS** : A JavaScript library that facilitates the creation of interactive grafical interfaces. -* **Mongo DB** : MongoDB is a popular open-source NoSQL database management system that stores data flexible, JSON-like documents with dynamic schemas. +* **Wikidata Toolkit** : Wikidata Toolkit is a Java library for accessing Wikidata and other Wikibase installations. It can be used to create bots, to perform data extraction tasks (e.g., convert all data in Wikidata to a new format), and to do large-scale analyses that are too complex for using a simple SPARQL query service. * **Express** : Express is a minimal and flexible Node.js web application framework that provides a robust set of features for building web and mobile applications. -* **Nodejs** : Node.js is an open-source, cross-platform JavaScript runtime environment that executes JavaScript code outside of a web browser, allowing developers to build scalable network applications. +* **Mongo DB** : MongoDB is a popular open-source NoSQL database management system that stores data flexible, JSON-like documents with dynamic schemas. -* **Java** : Java is a high-level, object-oriented programming language developed by Sun Microsystems. It is known for its portability, security features, and wide range of applications, from mobile to enterprise systems. +* **Docker** : Docker provides tools and a runtime environment to manage these containers efficiently, allowing developers to build, ship, and run applications consistently across different environments. This decisions were eventually discarded :: -* **Sass** : A scripting language that is compiled into CSS. It extends CSS by providing several mechanisms such as variables, nested rules, mixins, functions, and inheritance. (Not used) +* **Sass** : A scripting language that is compiled into CSS. It extends CSS by providing several mechanisms such as variables, nested rules, mixins, functions, and inheritance. -* **TypeScript** : A superset of JavaScript that adds various features that can resolve code errors before running the actual code. (Not used) +* **TypeScript** : A superset of JavaScript that adds various features that can resolve code errors before running the actual code. -* **SpringBoot** : An extension of the Spring framework for creating Java applications. SpringBoot offers many preconfigurations that accelerate the code production process. (Not used) +* **SpringBoot** : An extension of the Spring framework for creating Java applications. SpringBoot offers many preconfigurations that accelerate the code production process. -* **MySql** : MySQL is an open-source relational database management system that uses SQL for managing and manipulating data. (Not used) +* **MySql** : MySQL is an open-source relational database management system that uses SQL for managing and manipulating data. === Top-level Decomposition