Actions

Architectural decision records: Difference between revisions

From LimeSurvey Manual

Line 25: Line 25:
{|
{|
! Date || Author || Topic || Decision
! Date || Author || Topic || Decision
|-
| 2022-11-06
|style="white-space: nowrap;"|Olle Haerstedt || New question editor
|In the context of '''new question editor'''<br/>facing the problem to choose a new tech stack<br/>we decided for ReactJS + REST API<br/>and neglected Vue, Angular, RPC, SOAP<br/>to achieve a modern and common tech stack<br/>accepting that we will have to rewrite the side-menu Vue component<br/>because it's not that much code, and React is a more established framework (maybe?)
|-
|-
| 2021-11-05
| 2021-11-05

Revision as of 18:50, 7 November 2022

The purpose of this page is to keep a record of large technical decision, to track their progress and rational.

Template

The template for an architectural decision is as follows [1]:

In the context of <use case/user story u>, facing <concern c> we decided for <option o> and neglected <other options>, to achieve <system qualities/desired consequences>, accepting <downside d/undesired consequences>, because <additional rationale>.

Decisions

todo, definition of done, https://www.ozimmer.ch/practices/2020/05/22/ADDefinitionOfDone.html

Add new decisions at the top.

TODO: Add Psalm to entire application

TODO: SonarQube

TODO: Similar record for React app?

Date Author Topic Decision
2022-11-06 Olle Haerstedt New question editor In the context of new question editor
facing the problem to choose a new tech stack
we decided for ReactJS + REST API
and neglected Vue, Angular, RPC, SOAP
to achieve a modern and common tech stack
accepting that we will have to rewrite the side-menu Vue component
because it's not that much code, and React is a more established framework (maybe?)
2021-11-05 Olle Haerstedt CI In the context of continuous integration,
facing lack of evidence-based code metrics,
we decided to apply a maximum function size of 60 LOC for new code,
accepting that some exceptions will likely occur over time,
but overall the code quality will improve by such a restriction considering recommendations from NASA code guide and research.
2021-06-16 Olle Haerstedt Fat models In the context of fat models,
facing lack of testability,
we decided to move code to dependency injected service classes
to achieve higher testability with unit-tests,
accepting that readability might be slightly reduced (circular coupling between new service classes and old models, at least temporarily),
because preventing regressions is more important right now.
2021-06-16 Olle Haerstedt New features In the context of new features,
facing high degree of regressions,
we decided to always add integrity tests to new features
to prevent regressions and ensure adherence to specification,
accepting that we might need to help external contributors with scaffolding and guidance, also accepting the extra development time,
because testing is one of the best ways to prevent regressions long term and as the software changes and is touched by multiple developers.
2020-01-01 Team Controller refactoring In the context of controller refactoring,
facing non-idiomatic Yii code (renderWrappedTemplate)
we decided for refactoring of controllers and neglected other technical debt,
to achieve idiomatic Yii code,
accepting a long-term effort,
because applying the Yii 1.1 framework correctly is important to lower the bar for new developers.