chore: canonical site_url new.cqre.net, add deploy.sh (build + strip + rsync to helsinki)
This commit is contained in:
@@ -4,15 +4,13 @@
|
||||
|
||||
*Anglická verze tohoto dokumentu je k dispozici zde: [About CQRE](about-cqre.md).*
|
||||
|
||||
<!-- CONFIRM(Tom): rok založení + sídlo. Návrh se obojímu vyhýbá, dokud nepotvrdíš. -->
|
||||
|
||||
---
|
||||
|
||||
## 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.
|
||||
|
||||
<!-- CONFIRM(Tom): rok založení (např. „založena v roce 2018"); případná UK registrace (šablona zmiňovala Edinburgh — skutečné, nebo pozůstatek?). -->
|
||||
<!-- CONFIRM(Tom): přesný rok založení; IČ + sídlo pro imprint. Britská epizoda záměrně vynechána — řekni, pokud ji chceš vrátit. -->
|
||||
|
||||
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.
|
||||
|
||||
|
||||
@@ -4,15 +4,13 @@
|
||||
|
||||
*A Czech-language version of this document is maintained at [O společnosti CQRE](about-cqre-cs.md).*
|
||||
|
||||
<!-- CONFIRM(Tom): founding year + legal seat. Draft avoids claiming either. -->
|
||||
|
||||
---
|
||||
|
||||
## 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.
|
||||
|
||||
<!-- CONFIRM(Tom): founding year, e.g. "founded in 2018"; UK registration if any (the template mentioned Edinburgh — real or leftover?). -->
|
||||
<!-- CONFIRM(Tom): exact founding year; IČ + registered seat for an imprint line (customary on CZ business sites). UK interlude deliberately omitted — your call to re-add. -->
|
||||
|
||||
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.
|
||||
|
||||
|
||||
@@ -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*CONFIRM.*?-->\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/)"
|
||||
+1
-1
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user