nordabiz/test_diagrams.md
Maciej Pienczyn 110d971dca
Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions
feat: migrate prod docs to OVH VPS + UTC→Warsaw timezone in all templates
Production moved from on-prem VM 249 (10.22.68.249) to OVH VPS
(57.128.200.27, inpi-vps-waw01). Updated ALL documentation, slash
commands, memory files, architecture docs, and deploy procedures.

Added |local_time Jinja filter (UTC→Europe/Warsaw) and converted
155 .strftime() calls across 71 templates so timestamps display
in Polish timezone regardless of server timezone.

Also includes: created_by_id tracking, abort import fix, ICS
calendar fix for missing end times, Pros Poland data cleanup.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 13:41:53 +02:00

51 lines
1.1 KiB
Markdown

# Test Diagrams from README
## Diagram 7 - Simple Example
```mermaid
graph TD
A --> B
```
## Diagram 9 - Quote Example (POTENTIALLY BROKEN)
```mermaid
%% Wrong: Unescaped quotes break syntax
A["User says "hello""]
%% Correct: Use single quotes or escape
A['User says "hello"']
A["User says 'hello'"]
```
## Diagram 10 - Line Break Example
```mermaid
%% Use <br/> for line breaks in labels
A[Flask App<br/>57.128.200.27<br/>Port 5000]
```
## Diagram 11 - Style Guide
```mermaid
%%{init: {'theme':'default', 'themeVariables': { 'fontSize':'16px'}}}%%
graph TD
%% External systems - rounded boxes
Ext((External<br/>System))
%% Our services - rectangles
Service[Our Service]
%% Databases - cylinder
DB[(Database)]
%% Decision points - diamond (implicit in flowchart)
Service -->|Success| DB
Service -->|Failure| Ext
%% Styling
classDef external fill:#f9f,stroke:#333,stroke-width:2px
classDef internal fill:#bbf,stroke:#333,stroke-width:2px
classDef database fill:#bfb,stroke:#333,stroke-width:2px
class Ext external
class Service internal
class DB database
```