* commit at some point in the middle, WIP * formatting * ci passing * comments * handle no jobid case * better error handling * comments * Update orchestrator/src/client/hooks/queries/useJobMutations.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update orchestrator/src/client/hooks/queries/useSettingsMutation.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * better types * formatter * tracking inbox page * in progress page * tracer links page * invalidate harder * ensure tracer links docs show --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
78 lines
1.9 KiB
TypeScript
78 lines
1.9 KiB
TypeScript
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
|
|
|
|
const sidebars: SidebarsConfig = {
|
|
docsSidebar: [
|
|
"intro",
|
|
{
|
|
type: "category",
|
|
label: "Getting Started",
|
|
items: [
|
|
"getting-started/self-hosting",
|
|
"getting-started/gmail-oauth-setup",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Workflows",
|
|
items: [
|
|
"workflows/find-jobs-and-apply-workflow",
|
|
"workflows/post-application-workflow",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Core Features",
|
|
items: [
|
|
"features/overview",
|
|
"features/pipeline-run",
|
|
"features/job-search-bar",
|
|
"features/keyboard-shortcuts",
|
|
"features/multi-select-and-bulk-actions",
|
|
"features/orchestrator",
|
|
"features/settings",
|
|
"features/reactive-resume",
|
|
"features/in-progress-board",
|
|
"features/ghostwriter",
|
|
"features/post-application-tracking",
|
|
"features/visa-sponsors",
|
|
"features/tracer-links",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Extractors",
|
|
items: [
|
|
"extractors/overview",
|
|
"extractors/gradcracker",
|
|
"extractors/jobspy",
|
|
"extractors/adzuna",
|
|
"extractors/hiring-cafe",
|
|
"extractors/manual",
|
|
"extractors/ukvisajobs",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Self-Hosting & Ops",
|
|
items: [
|
|
"getting-started/self-hosting",
|
|
"getting-started/gmail-oauth-setup",
|
|
"getting-started/database-backups",
|
|
"troubleshooting/common-problems",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Troubleshooting",
|
|
items: ["troubleshooting/common-problems"],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Reference / FAQ",
|
|
items: ["reference/faq", "reference/documentation-style-guide"],
|
|
},
|
|
],
|
|
};
|
|
|
|
export default sidebars;
|