* feat(settings): add adzuna source fields and country compatibility * feat(discovery): integrate adzuna extractor into pipeline * feat(client): wire adzuna in source selection and run budgeting * docs(extractors): add adzuna guide and configuration notes * chore(workspaces): register adzuna extractor in lockfile * fix(adzuna): run extractor via npm script instead of npx * fix(adzuna): execute extractor via node+tsx without shell * fix(adzuna): prefer npm run start without shell, fallback to tsx * fix(docker): include adzuna extractor workspace in image * chore(adzuna): reuse shared type-conversion utilities * type-check adzuna * formatting * deeedooop * better instructions
72 lines
1.7 KiB
TypeScript
72 lines
1.7 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"],
|
|
},
|
|
{
|
|
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/manual",
|
|
"extractors/ukvisajobs",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Self-Hosting & Ops",
|
|
items: [
|
|
"getting-started/self-hosting",
|
|
"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;
|