Live Documentation: https://docs.elevatedsensors.com
This repository contains the source files for the Elevated Sensors documentation site, built with Zensical. It includes product manuals, integration guides, firmware manifests, and automation examples.
Contributions are welcome!
- Add or update Markdown files in the
docs/folder. - Assets (images, PDFs, CSS) go under
docs/assets/. - Follow existing folder structure:
products/,integrations/,guides/. - Open a pull request and describe your changes.
docs/
├─ index.md # Home page
├─ products/ # Product-specific pages
├─ integrations/ # Integration-specific pages
├─ guides/ # Automation examples, general guides
└─ assets/ # Images, CSS, PDFs
- Fork the repository and clone it
git clone https://github.com/<your-username>/docs.git cd docs
- Install Zensical
python3 -m venv .venv source .venv/bin/activate # On Windows: .venv/Scripts/activate pip install zensical
- Run the preview server
zensical serve
- Access the docs at
http://localhost:8000