From 8dfb49229feb3f4e8483695e489efec18bf4a03f Mon Sep 17 00:00:00 2001 From: Anikke Date: Sat, 19 Sep 2026 21:40:14 +0200 Subject: [PATCH] chore: canonical site_url new.cqre.net, add deploy.sh (build + strip + rsync to helsinki) --- antifragile-consulting/core/about-cqre-cs.md | 6 ++---- antifragile-consulting/core/about-cqre.md | 6 ++---- deploy.sh | 13 +++++++++++++ mkdocs.yml | 2 +- 4 files changed, 18 insertions(+), 9 deletions(-) create mode 100755 deploy.sh diff --git a/antifragile-consulting/core/about-cqre-cs.md b/antifragile-consulting/core/about-cqre-cs.md index 7a212f8..17f36b3 100644 --- a/antifragile-consulting/core/about-cqre-cs.md +++ b/antifragile-consulting/core/about-cqre-cs.md @@ -4,15 +4,13 @@ *Anglická verze tohoto dokumentu je k dispozici zde: [About CQRE](about-cqre.md).* - - --- ## Kdo jsme -**CQRE.NET Ltd** je specializovaná konzultační společnost v oblasti kybernetické bezpečnosti. Působíme primárně z **Prahy** a pracujeme s klienty ve **střední Evropě a Velké Británii**. Naši klienti přerostli generické rady — středně velké společnosti, telekomunikační operátoři, energetika a finanční instituce se skutečnými prostředími, stávajícími investicemi a konkrétními hrozbami, na které zaškrtávací rámce nestačí. +**CQRE.NET** je obchodní jméno společnosti **CZ Expert, s.r.o.**, české společnosti s ručením omezeným založené kolem roku 2000 a působící z **Prahy**. Pracujeme s organizacemi, které přerostly generické rady — středně velké společnosti, telekomunikační operátoři, energetika a finanční instituce se skutečnými prostředími, stávajícími investicemi a konkrétními hrozbami, na které zaškrtávací rámce nestačí — ve **střední Evropě a Velké Británii**. Po pětadvaceti letech praxe zůstává jedno tiché ponaučení: problémy se opakují, mění se jen nástroje. - + Vůči klientům vystupujeme pod značkou **Brownhat** — název odráží naši základní filozofii: pracujeme v brownfield prostředích (zavedených, obydlených, nesoucích tíhu minulých rozhodnutí) a naším úkolem je kultivovat to, co existuje, dříve než cokoliv doporučíme koupit. diff --git a/antifragile-consulting/core/about-cqre.md b/antifragile-consulting/core/about-cqre.md index d191053..489b20c 100644 --- a/antifragile-consulting/core/about-cqre.md +++ b/antifragile-consulting/core/about-cqre.md @@ -4,15 +4,13 @@ *A Czech-language version of this document is maintained at [O společnosti CQRE](about-cqre-cs.md).* - - --- ## Who We Are -**CQRE.NET Ltd** is a specialist cybersecurity consultancy operating primarily from **Prague, Czech Republic**, working with clients across **Central Europe and the UK**. We work with organisations that have outgrown generic advice — mid-market companies, telcos, utilities, and financial institutions with real environments, existing investments, and specific threats that checkbox frameworks do not address. +**CQRE.NET** is the business name of **CZ Expert, s.r.o.**, a Czech limited-liability company founded around 2000 and operating from **Prague**. We work with organisations that have outgrown generic advice — mid-market companies, telcos, utilities, and financial institutions with real environments, existing investments, and specific threats that checkbox frameworks do not address — across **Central Europe and the UK**. Twenty-five years of practice teaches one quiet lesson: the problems repeat, only the tooling changes. - + We operate under the **Brownhat** brand when engaging clients — a name that reflects our core philosophy: we work in brownfield environments (built up, lived in, carrying the weight of past decisions) and our job is to recultivate what exists before recommending anything new. diff --git a/deploy.sh b/deploy.sh new file mode 100755 index 0000000..c79ceac --- /dev/null +++ b/deploy.sh @@ -0,0 +1,13 @@ +#!/bin/sh +# Build and deploy the antifragile consulting site to new.cqre.net +# (Helsinki: /services/docker/stacks/prod/static-sites/antifragile). +# Requires: uv (mkdocs via uvx), tbot ssh identity for root@helsinki. +set -e +cd "$(dirname "$0")" + +uvx --with mkdocs-material --from mkdocs mkdocs build +# Strip internal CONFIRM(Tom) review comments from the published HTML. +find site -name "*.html" -exec perl -0777 -pi -e 's/\s*//gs' {} + +rsync -az --delete -e "ssh -F $HOME/.hermes/tbot-output/identity/ssh_config" \ + site/ root@helsinki:/services/docker/stacks/prod/static-sites/antifragile/site/ +echo "Deployed to https://new.cqre.net/ (alias https://antifragile.cqre.net/)" diff --git a/mkdocs.yml b/mkdocs.yml index b2092e8..4f07082 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,6 +1,6 @@ site_name: Antifragile Enterprise — CQRE Brownhat site_description: Frameworks, playbooks and assessments for antifragile organizations. CQRE Brownhat consulting. -site_url: https://antifragile.cqre.net/ +site_url: https://new.cqre.net/ repo_url: https://git.cqre.net/cqrenet/antifragile docs_dir: antifragile-consulting