mirror of
https://github.com/agessaman/meshcore-bot.git
synced 2026-03-30 20:15:40 +00:00
- Introduced a new `[Data_Retention]` section in `config.ini.example` to manage retention periods for various database tables, including packet stream, daily stats, and observed paths. - Updated `mkdocs.yml` and `configuration.md` to include documentation for the new data retention settings. - Implemented data retention cleanup methods in `mesh_graph.py`, `repeater_manager.py`, and `scheduler.py` to enforce retention policies automatically. - Enhanced the web viewer's data cleanup logic to utilize the new retention settings, ensuring efficient database management.
72 lines
1.7 KiB
YAML
72 lines
1.7 KiB
YAML
# Material for MkDocs - meshcore-bot documentation
|
|
site_name: Meshcore Bot Documentation
|
|
site_description: Documentation for the MeshCore bot and its services
|
|
site_url: https://agessaman.github.io/meshcore-bot/
|
|
|
|
repo_name: meshcore-bot
|
|
repo_url: https://github.com/agessaman/meshcore-bot
|
|
edit_uri: edit/main/docs/
|
|
|
|
theme:
|
|
name: material
|
|
language: en
|
|
palette:
|
|
- scheme: default
|
|
primary: indigo
|
|
accent: cyan
|
|
toggle:
|
|
icon: material/brightness-7
|
|
name: Switch to dark mode
|
|
- scheme: slate
|
|
primary: indigo
|
|
accent: cyan
|
|
toggle:
|
|
icon: material/brightness-4
|
|
name: Switch to light mode
|
|
features:
|
|
- navigation.instant
|
|
- navigation.tracking
|
|
- navigation.tabs
|
|
- navigation.sections
|
|
- toc.integrate
|
|
- content.code.copy
|
|
|
|
plugins:
|
|
- search
|
|
- exclude:
|
|
glob:
|
|
- local/**
|
|
|
|
markdown_extensions:
|
|
- pymdownx.superfences
|
|
- pymdownx.highlight:
|
|
anchor_linenums: true
|
|
- pymdownx.tabbed:
|
|
alternate_style: true
|
|
- tables
|
|
- attr_list
|
|
- md_in_html
|
|
|
|
nav:
|
|
- Home: index.md
|
|
- Quick Start: getting-started.md
|
|
- Installation:
|
|
- Overview: installation.md
|
|
- Docker: docker.md
|
|
- Service: service-installation.md
|
|
- Configuration:
|
|
- Overview: configuration.md
|
|
- Data retention: data-retention.md
|
|
- Path Command: path-command-config.md
|
|
- Config validation: config-validation.md
|
|
- Web Viewer: web-viewer.md
|
|
- Command Reference: command-reference.md
|
|
- Service Plugins:
|
|
- Overview: service-plugins.md
|
|
- Discord Bridge: discord-bridge.md
|
|
- Packet Capture: packet-capture.md
|
|
- Map Uploader: map-uploader.md
|
|
- Weather Service: weather-service.md
|
|
- Feed Management: feeds.md
|
|
- FAQ: faq.md
|
|
- Upgrade: upgrade.md |