mirror of
https://github.com/teslamate-org/teslamate.git
synced 2026-01-24 21:06:08 +08:00
* docs: remove manual installation reference from docker setup * docs: update changelog * docs: add nix develop to run treefmt to support non nix direnv users * docs: update changelog * docs: add Unraid installation and maintenance instructions (no support) * docs: clarify the use of secure connection to access TeslaMate * docs: reorder guides into advanced guides, categories FleetAPI documentation as config * docs: clarify which installation methods are supported and which are not * chore(issue-template): update bug report template to include Unraid as unsupported installation method * docs: fix sidebars link * docs: state in title which installation method is not supported * docs: nested entry for unsupported installation methods * docs: nest unsupported installation methods in separate folder for even more clarity * docs: fix links * docs: mention dedicated version for MCU2 upgraded cars
77 lines
1.6 KiB
JavaScript
77 lines
1.6 KiB
JavaScript
module.exports = {
|
|
docs: [
|
|
{
|
|
type: "category",
|
|
label: "Getting started",
|
|
items: [
|
|
{
|
|
type: "category",
|
|
label: "Installation",
|
|
items: [
|
|
"installation/docker",
|
|
"installation/nixos",
|
|
{
|
|
type: "category",
|
|
label: "unsupported Installation methods",
|
|
items: [
|
|
"installation/unsupported/debian",
|
|
"installation/unsupported/freebsd",
|
|
"installation/unsupported/unraid",
|
|
],
|
|
},
|
|
],
|
|
},
|
|
|
|
"faq",
|
|
"screenshots",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Advanced Guides",
|
|
items: [
|
|
"advanced_guides/traefik",
|
|
"advanced_guides/apache",
|
|
"advanced_guides/unix_domain_sockets",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Import",
|
|
items: ["import/teslafi", "import/tesla_apiscraper"],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Integrations",
|
|
items: [
|
|
"integrations/home_assistant",
|
|
"integrations/mqtt",
|
|
"integrations/Node-RED",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Advanced Configuration",
|
|
items: ["configuration/environment_variables", "configuration/api"],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Maintenance",
|
|
items: [
|
|
"upgrading",
|
|
"maintenance/backup_restore",
|
|
"maintenance/manually_fixing_data",
|
|
"maintenance/upgrading_postgres",
|
|
],
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "projects",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "development",
|
|
},
|
|
],
|
|
};
|