This repository is part of the Flipper One — Docs sub-project (also called the Developer Portal). It contains the documentation source files used to generate the Flipper One Developer Portal.
- Developer Portal: docs.flipper.net/one
- Sub-project overview
- Task tracker
- Miro templates
- Figma templates
This repository contains the source files from which the Developer Portal is generated. You can contribute by editing existing pages and creating new ones.
- Read How to contribute.
- Fork this repository.
- Edit Markdown files (Read the Markup reference).
- Create a pull request.
Two GitHub Actions in .github/workflows/ run automatically:
- Update Open-tasks page runs every hour. It runs the
tools/generate_open_tasks.pyscript, which collects all issues labeledhelp wantedacross all Flipper One repositories and regeneratesdocs/Open-tasks.md— published as the Open Tasks page. Don't edit that file by hand. - Validate runs on every pull request. It checks the documentation structure and scans for broken links before a PR is merged.
Publishing is handled by Archbee's GitHub integration, not a GitHub Action. Every merge to the public-release branch triggers Archbee to rebuild and publish the live site at docs.flipper.net/one.
flipperone-docs/
├── .github/
│ └── workflows/
│ ├── update-open-tasks.yml # Regenerates Open-tasks.md
│ └── validate.yml # Validates docs structure and links on PRs
├── archbee.json # Sidebar hierarchy + Archbee integration settings
├── README.md # Repository overview
├── tools/
│ └── generate_open_tasks.py # Generates Open-tasks.md from GitHub issues
└── docs/
├── Welcome.md # Main page at docs.flipper.net/one
├── How-to-join.md
├── Open-tasks.md # Auto-generated — do not edit manually
├── general/ # Tech specs, controls, and features
├── hardware/ # 🔌 Hardware sub-project
├── mechanics/ # ⚙️ Mechanics sub-project
├── cpu-software/ # 🐧 Linux (CPU Software) sub-project
├── mcu-firmware/ # 🕹️ MCU Firmware sub-project
├── user-interface/ # 🎨 User Interface sub-project
├── testing/ # 🧪 Testing sub-project
├── resources/
│ ├── docs/ # Docs sub-project
│ └── rockchip/ # Rockchip RK3576 reference
└── files/
├── pics/ # Images and other assets
└── icons/ # OS / brand icons used in docs
Each section's pages are listed in the sidebar — see archbee.json for the full hierarchy.
