Atalaya documentation https://atalaya-docs.dcarrillo.es/
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-07-22 16:22:35 +02:00
.github/workflows First commit 2026-07-18 17:06:13 +02:00
docs Add mermaid Cloudflare architecture diagram 2026-07-22 16:22:35 +02:00
overrides/.icons/atalaya First commit 2026-07-18 17:06:13 +02:00
.gitignore First commit 2026-07-18 17:06:13 +02:00
mkdocs.yml Add mermaid Cloudflare architecture diagram 2026-07-22 16:22:35 +02:00
pyproject.toml First commit 2026-07-18 17:06:13 +02:00
README.md Update home links 2026-07-18 17:18:12 +02:00
uv.lock First commit 2026-07-18 17:06:13 +02:00

Atalaya docs

Documentation for Atalaya, a self-hosted uptime monitoring tool that runs on Cloudflare Workers.

The published site is at https://atalaya-docs.dcarrillo.es

Built with MkDocs and the Material theme. Deployed to GitHub Pages through the workflow in .github/workflows/deploy.yml on every push to main.

Local development

You need uv and Python 3.x

uv sync
uv run mkdocs serve

That starts a dev server at http://127.0.0.1:8000 with live reload, so edits under docs/ show up as soon as you save.

To build the static site into site/:

uv run mkdocs build

Layout

  • docs/ markdown pages, one file per section
  • mkdocs.yml site config and navigation
  • overrides/ theme customizations (custom logo icon)
  • docs/stylesheets/extra.css color palette overrides

Adding a page means dropping a markdown file in docs/ and listing it under nav in mkdocs.yml.