Marketing / informational website for osctrl, served at https://osctrl.net. The technical documentation lives separately at https://docs.osctrl.net.
osctrl - Fast and efficient osquery management
Plain static HTML/CSS/JS — no build step, no dependencies.
index.html— home: what osctrl is, features, components, quick startuse-cases.html— use cases and benefitstechnology.html— architecture diagram, components, tech stack, securitygetting-started.html— Docker, provisioning script, build from sourceresources.html— docs, API, community and osquery ecosystem linksassets/— styles, scripts, fonts and images
The look and feel mirrors the osctrl React frontend
(osctrl/frontend/src/styles/tokens.css and base.css):
- Colors: dark theme tokens (
--bg-0…3,--signalteal#2bc4be, etc.) - Fonts: Inter (body), Space Grotesk (headings), Bai Jamjuree
(wordmark, self-hosted in
assets/fonts/), IBM Plex Mono (code) — Inter/Space Grotesk/IBM Plex Mono load from Google Fonts - Background: the frontend's circuit-trace pattern plus an animated
particle-network canvas (
assets/site.js); content sections reveal on scroll. Both respectprefers-reduced-motion.
To see how the website will look like before submitting your changes, you can serve it locally. Using the Makefile issue the command make serve and the website will be generated and served locally using npx http-server.
You can launch a local webserver using python with the following command:
python3 -m http.server 8930Then open http://localhost:8930.
