datahub/docs-website/sidebars.js

141 lines
4.2 KiB
JavaScript
Raw Normal View History

const fs = require("fs");
function list_ids_in_directory(directory) {
2021-05-11 11:17:53 -07:00
const files = fs.readdirSync(`../${directory}`).sort();
let ids = [];
for (const name of files) {
if (fs.lstatSync(`../${directory}/${name}`).isDirectory()) {
// Recurse into the directory.
const inner_ids = list_ids_in_directory(`${directory}/${name}`);
ids = ids.concat(inner_ids);
} else {
if (name.endsWith(".md")) {
2021-05-11 11:17:53 -07:00
const slug = name.replace(/\.md$/, "");
let id = `${directory}/${slug}`;
if (id.match(/\/\d+-.+/)) {
id = id.replace(/\/\d+-/, "/");
}
ids.push(id);
}
}
}
return ids;
}
// note: to handle errors where you don't want a markdown file in the sidebar, add it as a comment.
// this will fix errors like `Error: File not accounted for in sidebar: ...`
module.exports = {
// users
// architects
// modelers
// developers
// operators
overviewSidebar: {
DataHub: [
"README",
// "docs/faq", // hide from sidebar: out of date
"docs/features",
"docs/roadmap",
"docs/CONTRIBUTING",
"docs/demo",
"docs/saas",
"releases",
],
"Getting Started": [
// Serves as user guides.
"docs/quickstart",
"docs/debugging",
"metadata-ingestion/README",
],
Architecture: [
"docs/architecture/architecture",
"docs/architecture/metadata-ingestion",
//"docs/what/gma",
"docs/architecture/metadata-serving",
//"docs/what/gms",
],
"Metadata Modeling": [
"docs/modeling/metadata-model",
"docs/modeling/extending-the-metadata-model",
// TODO: change the titles of these, removing the "What is..." portion from the sidebar"
// "docs/what/entity",
// "docs/what/aspect",
// "docs/what/urn",
// "docs/what/relationship",
// "docs/what/search-document",
// "docs/what/snapshot",
// "docs/what/delta",
// "docs/what/mxe",
],
"Developer Guides": [
// TODO: the titles of these should not be in question form in the sidebar
"docs/developers",
"docs/docker/development",
"metadata-ingestion/adding-source",
"metadata-ingestion/s3-ingestion",
//"metadata-ingestion/examples/transforms/README"
"metadata-ingestion/transformers",
//"docs/what/graph",
//"docs/what/search-index",
//"docs/how/add-new-aspect",
//"docs/how/build-metadata-service",
//"docs/how/graph-onboarding",
//"docs/demo/graph-onboarding",
"docs/how/auth/jaas",
"docs/how/auth/sso/configure-oidc-react",
"docs/how/auth/sso/configure-oidc-react-google",
"docs/how/auth/sso/configure-oidc-react-okta",
"docs/how/restore-indices",
"docs/how/extract-container-logs",
"docs/how/delete-metadata",
2021-06-18 16:26:39 -07:00
"datahub-web-react/src/app/analytics/README",
"metadata-ingestion/developing",
],
Components: [
"datahub-web-react/README",
"datahub-frontend/README",
"datahub-graphql-core/README",
"gms/README",
"datahub-gms-graphql-service/README",
// "metadata-jobs/README",
"metadata-jobs/mae-consumer-job/README",
"metadata-jobs/mce-consumer-job/README",
],
"Advanced Guides": [
"docs/advanced/no-code-modeling",
"docs/advanced/aspect-versioning",
"docs/advanced/es-7-upgrade",
"docs/advanced/high-cardinality",
"docs/how/scsi-onboarding-guide",
"docs/advanced/no-code-upgrade",
"docs/how/migrating-graph-service-implementation",
"docs/advanced/mcp-mcl",
// WIP "docs/advanced/backfilling",
// WIP "docs/advanced/derived-aspects",
// WIP "docs/advanced/entity-hierarchy",
// WIP "docs/advanced/partial-update",
// WIP "docs/advanced/pdl-best-practices",
],
Deployment: [
"docs/how/kafka-config",
"docker/README",
"docs/deploy/kubernetes",
"docker/datahub-upgrade/README",
"docs/deploy/aws",
"docs/deploy/gcp",
],
Community: [
"docs/slack",
"docs/links",
"docs/townhalls",
"docs/townhall-history",
"docs/CODE_OF_CONDUCT",
"docs/rfc",
{
RFCs: list_ids_in_directory("docs/rfc/active"),
},
],
},
};