- Added comprehensive documentation covering key features, user guides, and best practices for the Corrad ProcessMaker platform. - Introduced new API endpoints for serving documentation files dynamically. - Enhanced the navigation structure to include a dedicated documentation section for improved accessibility. - Updated the Nuxt configuration to optimize the development environment and ensure proper handling of dependencies. - Included new dependencies in package.json to support documentation rendering and processing. - Improved the user interface for the documentation page, enhancing the overall user experience.
60 lines
1.2 KiB
JavaScript
60 lines
1.2 KiB
JavaScript
export default [
|
|
{
|
|
header: "",
|
|
description: "",
|
|
child: [
|
|
{
|
|
title: "Dashboard",
|
|
path: "/dashboard",
|
|
icon: "material-symbols:dashboard",
|
|
child: [],
|
|
meta: {},
|
|
},
|
|
],
|
|
},
|
|
// {
|
|
// header: "BPM",
|
|
// description: "Manage your BPM application",
|
|
// child: [
|
|
// {
|
|
// title: "Form",
|
|
// icon: "material-symbols:dynamic-form",
|
|
// path: "http://localhost:3000/workflow/7f024ce2-ce5d-43af-a18e-8e10d390e32b",
|
|
// external: true,
|
|
// },
|
|
// ],
|
|
// meta: {
|
|
// auth: {
|
|
// role: ["Developer"],
|
|
// },
|
|
// },
|
|
// },
|
|
{
|
|
header: "Design & Build",
|
|
description: "Create and design your workflows and forms",
|
|
child: [
|
|
{
|
|
title: "Form Designer",
|
|
icon: "material-symbols:dynamic-form",
|
|
path: "/form-builder/manage",
|
|
},
|
|
{
|
|
title: "Process Designer",
|
|
icon: "material-symbols:account-tree",
|
|
path: "/process-builder/manage",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
header: "Documentation",
|
|
description: "Learn how to use the platform",
|
|
child: [
|
|
{
|
|
title: "Documentation",
|
|
path: "/documentation",
|
|
icon: "material-symbols:book",
|
|
},
|
|
],
|
|
},
|
|
];
|