Jobber/docs-site/sidebars.ts
Shaheer Sarfaraz d34a9f041b
Hiring cafe extractor (#192)
* feat(hiringcafe): register new source across shared/server/client enums

* feat(hiringcafe-extractor): add browser-backed Hiring Cafe dataset extractor

* feat(orchestrator): integrate Hiring Cafe discovery service into pipeline

* feat(orchestrator-ui): add Hiring Cafe to source availability and run estimates

* chore(hiringcafe): wire CI/docker and add extractor documentation

* chore(format): apply biome formatting for Hiring Cafe integration

* add original websites

* coomints

* number or null
2026-02-19 12:51:55 +00:00

77 lines
1.8 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",
],
},
{
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;