├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── MANIFEST.in ├── README.md ├── commit ├── __init__.py ├── api │ ├── api_explorer.py │ ├── bruno.py │ ├── code_analysis.py │ ├── commit_project │ │ └── commit_project.py │ ├── convert_to_webp.py │ ├── erd_viewer.py │ ├── generate_documentation.py │ ├── get_commands.py │ ├── github.py │ ├── link.py │ ├── meta_data.py │ ├── preview.py │ └── search.py ├── commit │ ├── __init__.py │ ├── code_analysis │ │ ├── apis.py │ │ ├── doctypes.py │ │ ├── schema_builder.py │ │ └── utils.py │ └── doctype │ │ ├── __init__.py │ │ ├── commit_branch_documentation │ │ ├── __init__.py │ │ ├── commit_branch_documentation.js │ │ ├── commit_branch_documentation.json │ │ ├── commit_branch_documentation.py │ │ └── test_commit_branch_documentation.py │ │ ├── commit_docs │ │ ├── __init__.py │ │ ├── commit_docs.js │ │ ├── commit_docs.json │ │ ├── commit_docs.py │ │ └── test_commit_docs.py │ │ ├── commit_docs_footer_item │ │ ├── __init__.py │ │ ├── commit_docs_footer_item.json │ │ └── commit_docs_footer_item.py │ │ ├── commit_docs_group_item │ │ ├── __init__.py │ │ ├── commit_docs_group_item.json │ │ └── commit_docs_group_item.py │ │ ├── commit_docs_page │ │ ├── __init__.py │ │ ├── commit_docs_page.js │ │ ├── commit_docs_page.json │ │ ├── commit_docs_page.py │ │ └── test_commit_docs_page.py │ │ ├── commit_docs_topbar_item │ │ ├── __init__.py │ │ ├── commit_docs_topbar_item.json │ │ └── commit_docs_topbar_item.py │ │ ├── commit_organization │ │ ├── __init__.py │ │ ├── commit_organization.js │ │ ├── commit_organization.json │ │ ├── commit_organization.py │ │ └── test_commit_organization.py │ │ ├── commit_project │ │ ├── __init__.py │ │ ├── commit_project.js │ │ ├── commit_project.json │ │ ├── commit_project.py │ │ └── test_commit_project.py │ │ ├── commit_project_branch │ │ ├── __init__.py │ │ ├── commit_project_branch.js │ │ ├── commit_project_branch.json │ │ ├── commit_project_branch.py │ │ └── test_commit_project_branch.py │ │ ├── commit_settings │ │ ├── __init__.py │ │ ├── commit_settings.js │ │ ├── commit_settings.json │ │ ├── commit_settings.py │ │ └── test_commit_settings.py │ │ ├── github_settings │ │ ├── __init__.py │ │ ├── github_settings.js │ │ ├── github_settings.json │ │ ├── github_settings.py │ │ └── test_github_settings.py │ │ ├── github_token │ │ ├── __init__.py │ │ ├── github_token.js │ │ ├── github_token.json │ │ ├── github_token.py │ │ └── test_github_token.py │ │ ├── linked_commit_docs_page │ │ ├── __init__.py │ │ ├── linked_commit_docs_page.json │ │ └── linked_commit_docs_page.py │ │ └── open_ai_settings │ │ ├── __init__.py │ │ ├── open_ai_settings.js │ │ ├── open_ai_settings.json │ │ ├── open_ai_settings.py │ │ └── test_open_ai_settings.py ├── commit_configuration │ └── __init__.py ├── config │ └── __init__.py ├── fixtures │ └── server_script.json ├── hooks.py ├── modules.txt ├── patches.txt ├── public │ └── .gitkeep ├── templates │ ├── __init__.py │ └── pages │ │ ├── __init__.py │ │ └── __pycache__ │ │ └── __init__.py ├── utils │ ├── api_analysis.py │ └── conversions.py └── www │ ├── __init__.py │ ├── __pycache__ │ └── __init__.py │ ├── commit-docs.html │ ├── commit.py │ └── docs.html ├── dashboard ├── .env.production ├── .eslintrc.cjs ├── .gitignore ├── components.json ├── index.html ├── package.json ├── postcss.config.js ├── proxyOptions.js ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── mstile-150x150.png │ ├── safari-pinned-tab.svg │ └── site.webmanifest ├── src │ ├── App.tsx │ ├── assets │ │ ├── api.svg │ │ ├── commit-logo.png │ │ └── erd.svg │ ├── components │ │ ├── common │ │ │ ├── AsyncDropdown │ │ │ │ ├── AsyncDropdown.tsx │ │ │ │ └── LinkTitles.ts │ │ │ ├── Checkbox │ │ │ │ ├── Check.tsx │ │ │ │ └── CreatableSelect.tsx │ │ │ ├── CopyToClipboard │ │ │ │ └── CopyToClipboard.tsx │ │ │ ├── DynamicIconImport │ │ │ │ └── IconComponent.tsx │ │ │ ├── ErrorBanner │ │ │ │ └── ErrorBanner.tsx │ │ │ ├── Forms │ │ │ │ └── FormControl │ │ │ │ │ ├── Control.tsx │ │ │ │ │ ├── FormElement.tsx │ │ │ │ │ └── index.ts │ │ │ ├── FullPageLoader │ │ │ │ ├── FullPageLoader.tsx │ │ │ │ └── SpinnerLoader.tsx │ │ │ ├── Header.tsx │ │ │ ├── Icons.ts │ │ │ ├── ImageUploader2 │ │ │ │ ├── DocumentUploadModal.tsx │ │ │ │ ├── FileDrop.tsx │ │ │ │ └── ImageUploader.tsx │ │ │ ├── Label │ │ │ │ ├── Label.tsx │ │ │ │ └── index.ts │ │ │ ├── MarkdownEditor │ │ │ │ ├── MarkdownEditor.tsx │ │ │ │ └── markdown.css │ │ │ ├── MarkdownRenderer │ │ │ │ ├── MarkdownRenderer.tsx │ │ │ │ ├── MarkdownRendererSuspense.tsx │ │ │ │ └── markdown.css │ │ │ ├── PageNotFound │ │ │ │ └── PageNotFound.tsx │ │ │ └── Tabs.tsx │ │ ├── features │ │ │ ├── APIClient │ │ │ │ └── APIClientContent.tsx │ │ │ ├── Sidebar │ │ │ │ ├── BoardColumn.tsx │ │ │ │ ├── SidebarBoard.tsx │ │ │ │ ├── TaskCard.tsx │ │ │ │ ├── multipleContainerKeyboardPreset.ts │ │ │ │ └── utils.ts │ │ │ ├── api_viewer │ │ │ │ ├── API.ts │ │ │ │ ├── APIDetails.tsx │ │ │ │ └── APIList.tsx │ │ │ ├── commands │ │ │ │ └── CommandsContent.tsx │ │ │ ├── custommdxcomponent │ │ │ │ ├── CustomCodeBlock.tsx │ │ │ │ └── CustomHeading.tsx │ │ │ ├── documentation │ │ │ │ ├── APIDocumentation.tsx │ │ │ │ ├── DocsMainPage.tsx │ │ │ │ └── DocsPage │ │ │ │ │ └── DocsPageForm.tsx │ │ │ ├── meta_apps │ │ │ │ ├── YourAppAPIExplorer.tsx │ │ │ │ ├── YourApps.tsx │ │ │ │ ├── useGetCommitDocsDetails.ts │ │ │ │ └── useGetInstalledApp.ts │ │ │ ├── overview │ │ │ │ └── Navbar.tsx │ │ │ └── projects │ │ │ │ ├── APIExplorer.tsx │ │ │ │ ├── AddMenuButton.tsx │ │ │ │ ├── Branch │ │ │ │ ├── CreateBranchModal.tsx │ │ │ │ ├── ManageBranchItem.tsx │ │ │ │ └── ManageBranchModal.tsx │ │ │ │ ├── Org │ │ │ │ ├── CreateOrgModal.tsx │ │ │ │ ├── DeleteOrgModal.tsx │ │ │ │ └── OrgComponent.tsx │ │ │ │ ├── OrganizationHoverCard.tsx │ │ │ │ ├── Projects.tsx │ │ │ │ ├── Projects │ │ │ │ ├── CreateProjectModal.tsx │ │ │ │ ├── DeleteProjectModal.tsx │ │ │ │ └── ProjectCard.tsx │ │ │ │ ├── ViewERDAppDialog.tsx │ │ │ │ └── ViewERDButton.tsx │ │ ├── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── alert.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── radio-group.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── sonner.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textArea.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ ├── tooltip.tsx │ │ │ └── use-toast.ts │ │ └── utils │ │ │ └── dateconversion.ts │ ├── config │ │ └── socket.ts │ ├── hooks │ │ ├── useDebounce.ts │ │ └── useGetDoctypeMeta.ts │ ├── index.css │ ├── lib │ │ └── utils.ts │ ├── main.tsx │ ├── pages │ │ ├── features │ │ │ ├── TableDrawer │ │ │ │ ├── FieldTable │ │ │ │ │ ├── FieldActionButton.tsx │ │ │ │ │ ├── FieldModal.tsx │ │ │ │ │ ├── FieldTypeFilters.tsx │ │ │ │ │ ├── FieldTypeOptions.ts │ │ │ │ │ ├── FieldsTable.tsx │ │ │ │ │ └── IconTextComponent.tsx │ │ │ │ ├── LinkTable │ │ │ │ │ └── LinkTable.tsx │ │ │ │ ├── MetaTableDrawer.tsx │ │ │ │ ├── PermissionsTable │ │ │ │ │ └── PermissionsTable.tsx │ │ │ │ └── TableDrawer.tsx │ │ │ ├── api_viewer │ │ │ │ ├── APIViewer.tsx │ │ │ │ └── AppAPIViewer.tsx │ │ │ ├── docs │ │ │ │ ├── CommitDocs │ │ │ │ │ └── CreateCommitDocModal.tsx │ │ │ │ ├── DocsEditor │ │ │ │ │ ├── CreateDocs.tsx │ │ │ │ │ └── PageTable.tsx │ │ │ │ ├── EditorComponent.tsx │ │ │ │ ├── Footer │ │ │ │ │ ├── DashboardFooter.tsx │ │ │ │ │ ├── FooterBoard.tsx │ │ │ │ │ ├── FooterColumn.tsx │ │ │ │ │ └── FooterTaskCard.tsx │ │ │ │ ├── LandingPage │ │ │ │ │ ├── CommitDocsList.tsx │ │ │ │ │ └── DocsCard.tsx │ │ │ │ ├── Navbar │ │ │ │ │ ├── DashboardNavbar.tsx │ │ │ │ │ ├── NavbarBoard.tsx │ │ │ │ │ ├── NavbarColumn.tsx │ │ │ │ │ └── NavbarTaskCard.tsx │ │ │ │ ├── PageContent.tsx │ │ │ │ ├── Settings │ │ │ │ │ └── DocsSettings.tsx │ │ │ │ ├── Sidebar.tsx │ │ │ │ ├── Sidebar │ │ │ │ │ └── DashboardSidebar.tsx │ │ │ │ ├── ViewDocs.tsx │ │ │ │ └── docs.ts │ │ │ └── erd │ │ │ │ ├── ERDForDoctypes.tsx │ │ │ │ ├── ERDViewer.tsx │ │ │ │ ├── Graph.tsx │ │ │ │ ├── Markers.tsx │ │ │ │ ├── TableHoverCard.tsx │ │ │ │ ├── TableNode.tsx │ │ │ │ ├── meta │ │ │ │ ├── CreateERDForMeta.tsx │ │ │ │ ├── ERDDoctypeAndAppModal.tsx │ │ │ │ ├── ERDForMetaDoctype.tsx │ │ │ │ └── MetaGraph.tsx │ │ │ │ └── tables.ts │ │ └── overview │ │ │ └── Overview.tsx │ ├── styles │ │ └── flow.css │ ├── types │ │ ├── APIData.ts │ │ ├── CommitProjectBranch.ts │ │ ├── Core │ │ │ ├── DocField.ts │ │ │ ├── DocPerm.ts │ │ │ ├── DocType.ts │ │ │ ├── DocTypeAction.ts │ │ │ ├── DocTypeLink.ts │ │ │ ├── DocTypeState.ts │ │ │ └── File.ts │ │ ├── Integrations │ │ │ └── OAuthScope.ts │ │ ├── Table.ts │ │ └── commit │ │ │ ├── CommitBranchDocumentation.ts │ │ │ ├── CommitDocs.ts │ │ │ ├── CommitDocsFooterItem.ts │ │ │ ├── CommitDocsGroupItem.ts │ │ │ ├── CommitDocsPage.ts │ │ │ ├── CommitDocsTopbarItem.ts │ │ │ ├── CommitOrganization.ts │ │ │ ├── CommitProject.ts │ │ │ ├── CommitProjectBranch.ts │ │ │ ├── CommitSettings.ts │ │ │ ├── GithubSettings.ts │ │ │ ├── GithubToken.ts │ │ │ ├── LinkedCommitDocsPage.ts │ │ │ └── OpenAISettings.ts │ ├── utils │ │ ├── defaults.ts │ │ ├── namespace │ │ │ ├── defaults.js │ │ │ ├── index.js │ │ │ ├── locals.js │ │ │ ├── namespace.js │ │ │ └── sync.js │ │ ├── removeFrappeFields.ts │ │ └── roles.ts │ └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock ├── docs ├── .env.production ├── .gitignore ├── README.md ├── components.json ├── eslint.config.js ├── index.html ├── package.json ├── postcss.config.js ├── proxyOptions.ts ├── src │ ├── App.css │ ├── App.tsx │ ├── assets │ │ ├── Docs.svg │ │ └── react.svg │ ├── components │ │ ├── common │ │ │ ├── DynamicIconImport │ │ │ │ └── IconComponent.tsx │ │ │ ├── ErrorBanner │ │ │ │ └── ErrorBanner.tsx │ │ │ ├── FullPageLoader │ │ │ │ ├── FullPageLoader.tsx │ │ │ │ └── SpinnerLoader.tsx │ │ │ ├── MarkdownRenderer │ │ │ │ ├── MDX.tsx │ │ │ │ └── markdown.css │ │ │ └── PageNotFound │ │ │ │ └── PageNotFound.tsx │ │ └── ui │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── input.tsx │ │ │ ├── tabs.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ └── tooltip.tsx │ ├── config │ │ └── socket.ts │ ├── hooks │ │ ├── use-toast.ts │ │ ├── useDebounce.ts │ │ ├── useGetCommitDocsDetails.ts │ │ ├── useGetDoctypeMeta.ts │ │ └── useGetInstalledApp.ts │ ├── index.css │ ├── lib │ │ └── utils.ts │ ├── main.tsx │ ├── pages │ │ └── features │ │ │ ├── LandingPage │ │ │ ├── DocsLandingPage.tsx │ │ │ ├── DocsList.tsx │ │ │ ├── HeroSection.tsx │ │ │ ├── ShootingStars.tsx │ │ │ └── useGetCommitDocsDetails.ts │ │ │ ├── custommdxcomponent │ │ │ ├── CustomCodeBlock.tsx │ │ │ └── CustomHeading.tsx │ │ │ └── docs │ │ │ ├── DocsPage.tsx │ │ │ ├── Footer.tsx │ │ │ ├── Navbar.tsx │ │ │ ├── OnThisPage.tsx │ │ │ ├── PageContent.tsx │ │ │ ├── Renderer.tsx │ │ │ ├── Sidebar.tsx │ │ │ ├── ViewDocs.tsx │ │ │ └── docs.ts │ ├── types │ │ ├── APIData.ts │ │ ├── CommitProjectBranch.ts │ │ ├── Core │ │ │ ├── DocField.ts │ │ │ ├── DocPerm.ts │ │ │ ├── DocType.ts │ │ │ ├── DocTypeAction.ts │ │ │ ├── DocTypeLink.ts │ │ │ ├── DocTypeState.ts │ │ │ └── File.ts │ │ ├── Integrations │ │ │ └── OAuthScope.ts │ │ ├── Table.ts │ │ └── commit │ │ │ ├── CommitBranchDocumentation.ts │ │ │ ├── CommitDocs.ts │ │ │ ├── CommitDocsFooterItem.ts │ │ │ ├── CommitDocsGroupItem.ts │ │ │ ├── CommitDocsPage.ts │ │ │ ├── CommitDocsTopbarItem.ts │ │ │ ├── CommitOrganization.ts │ │ │ ├── CommitProject.ts │ │ │ ├── CommitProjectBranch.ts │ │ │ ├── CommitSettings.ts │ │ │ ├── GithubSettings.ts │ │ │ ├── GithubToken.ts │ │ │ ├── LinkedCommitDocsPage.ts │ │ │ └── OpenAISettings.ts │ ├── utils │ │ ├── defaults.ts │ │ └── namespace │ │ │ ├── defaults.js │ │ │ ├── index.js │ │ │ ├── locals.js │ │ │ ├── namespace.js │ │ │ └── sync.js │ └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock ├── package.json ├── pyproject.toml ├── requirements.txt ├── setup.py └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/README.md -------------------------------------------------------------------------------- /commit/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | __version__ = '1.0.0' 3 | 4 | -------------------------------------------------------------------------------- /commit/api/api_explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/api/api_explorer.py -------------------------------------------------------------------------------- /commit/api/bruno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/api/bruno.py -------------------------------------------------------------------------------- /commit/api/code_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/api/code_analysis.py -------------------------------------------------------------------------------- /commit/api/commit_project/commit_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/api/commit_project/commit_project.py -------------------------------------------------------------------------------- /commit/api/convert_to_webp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/api/convert_to_webp.py -------------------------------------------------------------------------------- /commit/api/erd_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/api/erd_viewer.py -------------------------------------------------------------------------------- /commit/api/generate_documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/api/generate_documentation.py -------------------------------------------------------------------------------- /commit/api/get_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/api/get_commands.py -------------------------------------------------------------------------------- /commit/api/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/api/github.py -------------------------------------------------------------------------------- /commit/api/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/api/link.py -------------------------------------------------------------------------------- /commit/api/meta_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/api/meta_data.py -------------------------------------------------------------------------------- /commit/api/preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/api/preview.py -------------------------------------------------------------------------------- /commit/api/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/api/search.py -------------------------------------------------------------------------------- /commit/commit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/commit/code_analysis/apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/code_analysis/apis.py -------------------------------------------------------------------------------- /commit/commit/code_analysis/doctypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/code_analysis/doctypes.py -------------------------------------------------------------------------------- /commit/commit/code_analysis/schema_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/code_analysis/schema_builder.py -------------------------------------------------------------------------------- /commit/commit/code_analysis/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/code_analysis/utils.py -------------------------------------------------------------------------------- /commit/commit/doctype/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/commit/doctype/commit_branch_documentation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/commit/doctype/commit_branch_documentation/commit_branch_documentation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_branch_documentation/commit_branch_documentation.js -------------------------------------------------------------------------------- /commit/commit/doctype/commit_branch_documentation/commit_branch_documentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_branch_documentation/commit_branch_documentation.json -------------------------------------------------------------------------------- /commit/commit/doctype/commit_branch_documentation/commit_branch_documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_branch_documentation/commit_branch_documentation.py -------------------------------------------------------------------------------- /commit/commit/doctype/commit_branch_documentation/test_commit_branch_documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_branch_documentation/test_commit_branch_documentation.py -------------------------------------------------------------------------------- /commit/commit/doctype/commit_docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/commit/doctype/commit_docs/commit_docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_docs/commit_docs.js -------------------------------------------------------------------------------- /commit/commit/doctype/commit_docs/commit_docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_docs/commit_docs.json -------------------------------------------------------------------------------- /commit/commit/doctype/commit_docs/commit_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_docs/commit_docs.py -------------------------------------------------------------------------------- /commit/commit/doctype/commit_docs/test_commit_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_docs/test_commit_docs.py -------------------------------------------------------------------------------- /commit/commit/doctype/commit_docs_footer_item/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/commit/doctype/commit_docs_footer_item/commit_docs_footer_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_docs_footer_item/commit_docs_footer_item.json -------------------------------------------------------------------------------- /commit/commit/doctype/commit_docs_footer_item/commit_docs_footer_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_docs_footer_item/commit_docs_footer_item.py -------------------------------------------------------------------------------- /commit/commit/doctype/commit_docs_group_item/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/commit/doctype/commit_docs_group_item/commit_docs_group_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_docs_group_item/commit_docs_group_item.json -------------------------------------------------------------------------------- /commit/commit/doctype/commit_docs_group_item/commit_docs_group_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_docs_group_item/commit_docs_group_item.py -------------------------------------------------------------------------------- /commit/commit/doctype/commit_docs_page/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/commit/doctype/commit_docs_page/commit_docs_page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_docs_page/commit_docs_page.js -------------------------------------------------------------------------------- /commit/commit/doctype/commit_docs_page/commit_docs_page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_docs_page/commit_docs_page.json -------------------------------------------------------------------------------- /commit/commit/doctype/commit_docs_page/commit_docs_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_docs_page/commit_docs_page.py -------------------------------------------------------------------------------- /commit/commit/doctype/commit_docs_page/test_commit_docs_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_docs_page/test_commit_docs_page.py -------------------------------------------------------------------------------- /commit/commit/doctype/commit_docs_topbar_item/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/commit/doctype/commit_docs_topbar_item/commit_docs_topbar_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_docs_topbar_item/commit_docs_topbar_item.json -------------------------------------------------------------------------------- /commit/commit/doctype/commit_docs_topbar_item/commit_docs_topbar_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_docs_topbar_item/commit_docs_topbar_item.py -------------------------------------------------------------------------------- /commit/commit/doctype/commit_organization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/commit/doctype/commit_organization/commit_organization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_organization/commit_organization.js -------------------------------------------------------------------------------- /commit/commit/doctype/commit_organization/commit_organization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_organization/commit_organization.json -------------------------------------------------------------------------------- /commit/commit/doctype/commit_organization/commit_organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_organization/commit_organization.py -------------------------------------------------------------------------------- /commit/commit/doctype/commit_organization/test_commit_organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_organization/test_commit_organization.py -------------------------------------------------------------------------------- /commit/commit/doctype/commit_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/commit/doctype/commit_project/commit_project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_project/commit_project.js -------------------------------------------------------------------------------- /commit/commit/doctype/commit_project/commit_project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_project/commit_project.json -------------------------------------------------------------------------------- /commit/commit/doctype/commit_project/commit_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_project/commit_project.py -------------------------------------------------------------------------------- /commit/commit/doctype/commit_project/test_commit_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_project/test_commit_project.py -------------------------------------------------------------------------------- /commit/commit/doctype/commit_project_branch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/commit/doctype/commit_project_branch/commit_project_branch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_project_branch/commit_project_branch.js -------------------------------------------------------------------------------- /commit/commit/doctype/commit_project_branch/commit_project_branch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_project_branch/commit_project_branch.json -------------------------------------------------------------------------------- /commit/commit/doctype/commit_project_branch/commit_project_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_project_branch/commit_project_branch.py -------------------------------------------------------------------------------- /commit/commit/doctype/commit_project_branch/test_commit_project_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_project_branch/test_commit_project_branch.py -------------------------------------------------------------------------------- /commit/commit/doctype/commit_settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/commit/doctype/commit_settings/commit_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_settings/commit_settings.js -------------------------------------------------------------------------------- /commit/commit/doctype/commit_settings/commit_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_settings/commit_settings.json -------------------------------------------------------------------------------- /commit/commit/doctype/commit_settings/commit_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_settings/commit_settings.py -------------------------------------------------------------------------------- /commit/commit/doctype/commit_settings/test_commit_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/commit_settings/test_commit_settings.py -------------------------------------------------------------------------------- /commit/commit/doctype/github_settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/commit/doctype/github_settings/github_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/github_settings/github_settings.js -------------------------------------------------------------------------------- /commit/commit/doctype/github_settings/github_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/github_settings/github_settings.json -------------------------------------------------------------------------------- /commit/commit/doctype/github_settings/github_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/github_settings/github_settings.py -------------------------------------------------------------------------------- /commit/commit/doctype/github_settings/test_github_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/github_settings/test_github_settings.py -------------------------------------------------------------------------------- /commit/commit/doctype/github_token/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/commit/doctype/github_token/github_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/github_token/github_token.js -------------------------------------------------------------------------------- /commit/commit/doctype/github_token/github_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/github_token/github_token.json -------------------------------------------------------------------------------- /commit/commit/doctype/github_token/github_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/github_token/github_token.py -------------------------------------------------------------------------------- /commit/commit/doctype/github_token/test_github_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/github_token/test_github_token.py -------------------------------------------------------------------------------- /commit/commit/doctype/linked_commit_docs_page/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/commit/doctype/linked_commit_docs_page/linked_commit_docs_page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/linked_commit_docs_page/linked_commit_docs_page.json -------------------------------------------------------------------------------- /commit/commit/doctype/linked_commit_docs_page/linked_commit_docs_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/linked_commit_docs_page/linked_commit_docs_page.py -------------------------------------------------------------------------------- /commit/commit/doctype/open_ai_settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/commit/doctype/open_ai_settings/open_ai_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/open_ai_settings/open_ai_settings.js -------------------------------------------------------------------------------- /commit/commit/doctype/open_ai_settings/open_ai_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/open_ai_settings/open_ai_settings.json -------------------------------------------------------------------------------- /commit/commit/doctype/open_ai_settings/open_ai_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/open_ai_settings/open_ai_settings.py -------------------------------------------------------------------------------- /commit/commit/doctype/open_ai_settings/test_open_ai_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/commit/doctype/open_ai_settings/test_open_ai_settings.py -------------------------------------------------------------------------------- /commit/commit_configuration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/fixtures/server_script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/fixtures/server_script.json -------------------------------------------------------------------------------- /commit/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/hooks.py -------------------------------------------------------------------------------- /commit/modules.txt: -------------------------------------------------------------------------------- 1 | commit -------------------------------------------------------------------------------- /commit/patches.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/templates/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/templates/pages/__pycache__/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/utils/api_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/utils/api_analysis.py -------------------------------------------------------------------------------- /commit/utils/conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/utils/conversions.py -------------------------------------------------------------------------------- /commit/www/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/www/__pycache__/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commit/www/commit-docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/www/commit-docs.html -------------------------------------------------------------------------------- /commit/www/commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/www/commit.py -------------------------------------------------------------------------------- /commit/www/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/commit/www/docs.html -------------------------------------------------------------------------------- /dashboard/.env.production: -------------------------------------------------------------------------------- 1 | VITE_BASE_PATH='/commit' -------------------------------------------------------------------------------- /dashboard/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/.eslintrc.cjs -------------------------------------------------------------------------------- /dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/.gitignore -------------------------------------------------------------------------------- /dashboard/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/components.json -------------------------------------------------------------------------------- /dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/index.html -------------------------------------------------------------------------------- /dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/package.json -------------------------------------------------------------------------------- /dashboard/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/postcss.config.js -------------------------------------------------------------------------------- /dashboard/proxyOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/proxyOptions.js -------------------------------------------------------------------------------- /dashboard/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /dashboard/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /dashboard/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/public/apple-touch-icon.png -------------------------------------------------------------------------------- /dashboard/public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/public/browserconfig.xml -------------------------------------------------------------------------------- /dashboard/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/public/favicon-16x16.png -------------------------------------------------------------------------------- /dashboard/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/public/favicon-32x32.png -------------------------------------------------------------------------------- /dashboard/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/public/favicon.ico -------------------------------------------------------------------------------- /dashboard/public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/public/mstile-150x150.png -------------------------------------------------------------------------------- /dashboard/public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /dashboard/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/public/site.webmanifest -------------------------------------------------------------------------------- /dashboard/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/App.tsx -------------------------------------------------------------------------------- /dashboard/src/assets/api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/assets/api.svg -------------------------------------------------------------------------------- /dashboard/src/assets/commit-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/assets/commit-logo.png -------------------------------------------------------------------------------- /dashboard/src/assets/erd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/assets/erd.svg -------------------------------------------------------------------------------- /dashboard/src/components/common/AsyncDropdown/AsyncDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/AsyncDropdown/AsyncDropdown.tsx -------------------------------------------------------------------------------- /dashboard/src/components/common/AsyncDropdown/LinkTitles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/AsyncDropdown/LinkTitles.ts -------------------------------------------------------------------------------- /dashboard/src/components/common/Checkbox/Check.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/Checkbox/Check.tsx -------------------------------------------------------------------------------- /dashboard/src/components/common/Checkbox/CreatableSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/Checkbox/CreatableSelect.tsx -------------------------------------------------------------------------------- /dashboard/src/components/common/CopyToClipboard/CopyToClipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/CopyToClipboard/CopyToClipboard.tsx -------------------------------------------------------------------------------- /dashboard/src/components/common/DynamicIconImport/IconComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/DynamicIconImport/IconComponent.tsx -------------------------------------------------------------------------------- /dashboard/src/components/common/ErrorBanner/ErrorBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/ErrorBanner/ErrorBanner.tsx -------------------------------------------------------------------------------- /dashboard/src/components/common/Forms/FormControl/Control.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/Forms/FormControl/Control.tsx -------------------------------------------------------------------------------- /dashboard/src/components/common/Forms/FormControl/FormElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/Forms/FormControl/FormElement.tsx -------------------------------------------------------------------------------- /dashboard/src/components/common/Forms/FormControl/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/Forms/FormControl/index.ts -------------------------------------------------------------------------------- /dashboard/src/components/common/FullPageLoader/FullPageLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/FullPageLoader/FullPageLoader.tsx -------------------------------------------------------------------------------- /dashboard/src/components/common/FullPageLoader/SpinnerLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/FullPageLoader/SpinnerLoader.tsx -------------------------------------------------------------------------------- /dashboard/src/components/common/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/Header.tsx -------------------------------------------------------------------------------- /dashboard/src/components/common/Icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/Icons.ts -------------------------------------------------------------------------------- /dashboard/src/components/common/ImageUploader2/DocumentUploadModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/ImageUploader2/DocumentUploadModal.tsx -------------------------------------------------------------------------------- /dashboard/src/components/common/ImageUploader2/FileDrop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/ImageUploader2/FileDrop.tsx -------------------------------------------------------------------------------- /dashboard/src/components/common/ImageUploader2/ImageUploader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/ImageUploader2/ImageUploader.tsx -------------------------------------------------------------------------------- /dashboard/src/components/common/Label/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/Label/Label.tsx -------------------------------------------------------------------------------- /dashboard/src/components/common/Label/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/Label/index.ts -------------------------------------------------------------------------------- /dashboard/src/components/common/MarkdownEditor/MarkdownEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/MarkdownEditor/MarkdownEditor.tsx -------------------------------------------------------------------------------- /dashboard/src/components/common/MarkdownEditor/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/MarkdownEditor/markdown.css -------------------------------------------------------------------------------- /dashboard/src/components/common/MarkdownRenderer/MarkdownRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/MarkdownRenderer/MarkdownRenderer.tsx -------------------------------------------------------------------------------- /dashboard/src/components/common/MarkdownRenderer/MarkdownRendererSuspense.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/MarkdownRenderer/MarkdownRendererSuspense.tsx -------------------------------------------------------------------------------- /dashboard/src/components/common/MarkdownRenderer/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/MarkdownRenderer/markdown.css -------------------------------------------------------------------------------- /dashboard/src/components/common/PageNotFound/PageNotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/PageNotFound/PageNotFound.tsx -------------------------------------------------------------------------------- /dashboard/src/components/common/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/common/Tabs.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/APIClient/APIClientContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/APIClient/APIClientContent.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/Sidebar/BoardColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/Sidebar/BoardColumn.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/Sidebar/SidebarBoard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/Sidebar/SidebarBoard.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/Sidebar/TaskCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/Sidebar/TaskCard.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/Sidebar/multipleContainerKeyboardPreset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/Sidebar/multipleContainerKeyboardPreset.ts -------------------------------------------------------------------------------- /dashboard/src/components/features/Sidebar/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/Sidebar/utils.ts -------------------------------------------------------------------------------- /dashboard/src/components/features/api_viewer/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/api_viewer/API.ts -------------------------------------------------------------------------------- /dashboard/src/components/features/api_viewer/APIDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/api_viewer/APIDetails.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/api_viewer/APIList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/api_viewer/APIList.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/commands/CommandsContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/commands/CommandsContent.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/custommdxcomponent/CustomCodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/custommdxcomponent/CustomCodeBlock.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/custommdxcomponent/CustomHeading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/custommdxcomponent/CustomHeading.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/documentation/APIDocumentation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/documentation/APIDocumentation.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/documentation/DocsMainPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/documentation/DocsMainPage.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/documentation/DocsPage/DocsPageForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/documentation/DocsPage/DocsPageForm.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/meta_apps/YourAppAPIExplorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/meta_apps/YourAppAPIExplorer.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/meta_apps/YourApps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/meta_apps/YourApps.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/meta_apps/useGetCommitDocsDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/meta_apps/useGetCommitDocsDetails.ts -------------------------------------------------------------------------------- /dashboard/src/components/features/meta_apps/useGetInstalledApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/meta_apps/useGetInstalledApp.ts -------------------------------------------------------------------------------- /dashboard/src/components/features/overview/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/overview/Navbar.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/projects/APIExplorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/projects/APIExplorer.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/projects/AddMenuButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/projects/AddMenuButton.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/projects/Branch/CreateBranchModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/projects/Branch/CreateBranchModal.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/projects/Branch/ManageBranchItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/projects/Branch/ManageBranchItem.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/projects/Branch/ManageBranchModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/projects/Branch/ManageBranchModal.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/projects/Org/CreateOrgModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/projects/Org/CreateOrgModal.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/projects/Org/DeleteOrgModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/projects/Org/DeleteOrgModal.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/projects/Org/OrgComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/projects/Org/OrgComponent.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/projects/OrganizationHoverCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/projects/OrganizationHoverCard.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/projects/Projects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/projects/Projects.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/projects/Projects/CreateProjectModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/projects/Projects/CreateProjectModal.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/projects/Projects/DeleteProjectModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/projects/Projects/DeleteProjectModal.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/projects/Projects/ProjectCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/projects/Projects/ProjectCard.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/projects/ViewERDAppDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/projects/ViewERDAppDialog.tsx -------------------------------------------------------------------------------- /dashboard/src/components/features/projects/ViewERDButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/features/projects/ViewERDButton.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/button.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/card.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/command.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/form.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/input.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/label.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/select.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/table.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/textArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/textArea.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /dashboard/src/components/utils/dateconversion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/components/utils/dateconversion.ts -------------------------------------------------------------------------------- /dashboard/src/config/socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/config/socket.ts -------------------------------------------------------------------------------- /dashboard/src/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/hooks/useDebounce.ts -------------------------------------------------------------------------------- /dashboard/src/hooks/useGetDoctypeMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/hooks/useGetDoctypeMeta.ts -------------------------------------------------------------------------------- /dashboard/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/index.css -------------------------------------------------------------------------------- /dashboard/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/lib/utils.ts -------------------------------------------------------------------------------- /dashboard/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/main.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/TableDrawer/FieldTable/FieldActionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/TableDrawer/FieldTable/FieldActionButton.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/TableDrawer/FieldTable/FieldModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/TableDrawer/FieldTable/FieldModal.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/TableDrawer/FieldTable/FieldTypeFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/TableDrawer/FieldTable/FieldTypeFilters.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/TableDrawer/FieldTable/FieldTypeOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/TableDrawer/FieldTable/FieldTypeOptions.ts -------------------------------------------------------------------------------- /dashboard/src/pages/features/TableDrawer/FieldTable/FieldsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/TableDrawer/FieldTable/FieldsTable.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/TableDrawer/FieldTable/IconTextComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/TableDrawer/FieldTable/IconTextComponent.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/TableDrawer/LinkTable/LinkTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/TableDrawer/LinkTable/LinkTable.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/TableDrawer/MetaTableDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/TableDrawer/MetaTableDrawer.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/TableDrawer/PermissionsTable/PermissionsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/TableDrawer/PermissionsTable/PermissionsTable.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/TableDrawer/TableDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/TableDrawer/TableDrawer.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/api_viewer/APIViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/api_viewer/APIViewer.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/api_viewer/AppAPIViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/api_viewer/AppAPIViewer.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/docs/CommitDocs/CreateCommitDocModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/docs/CommitDocs/CreateCommitDocModal.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/docs/DocsEditor/CreateDocs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/docs/DocsEditor/CreateDocs.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/docs/DocsEditor/PageTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/docs/DocsEditor/PageTable.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/docs/EditorComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/docs/EditorComponent.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/docs/Footer/DashboardFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/docs/Footer/DashboardFooter.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/docs/Footer/FooterBoard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/docs/Footer/FooterBoard.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/docs/Footer/FooterColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/docs/Footer/FooterColumn.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/docs/Footer/FooterTaskCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/docs/Footer/FooterTaskCard.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/docs/LandingPage/CommitDocsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/docs/LandingPage/CommitDocsList.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/docs/LandingPage/DocsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/docs/LandingPage/DocsCard.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/docs/Navbar/DashboardNavbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/docs/Navbar/DashboardNavbar.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/docs/Navbar/NavbarBoard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/docs/Navbar/NavbarBoard.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/docs/Navbar/NavbarColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/docs/Navbar/NavbarColumn.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/docs/Navbar/NavbarTaskCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/docs/Navbar/NavbarTaskCard.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/docs/PageContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/docs/PageContent.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/docs/Settings/DocsSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/docs/Settings/DocsSettings.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/docs/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/docs/Sidebar.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/docs/Sidebar/DashboardSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/docs/Sidebar/DashboardSidebar.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/docs/ViewDocs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/docs/ViewDocs.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/docs/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/docs/docs.ts -------------------------------------------------------------------------------- /dashboard/src/pages/features/erd/ERDForDoctypes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/erd/ERDForDoctypes.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/erd/ERDViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/erd/ERDViewer.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/erd/Graph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/erd/Graph.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/erd/Markers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/erd/Markers.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/erd/TableHoverCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/erd/TableHoverCard.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/erd/TableNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/erd/TableNode.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/erd/meta/CreateERDForMeta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/erd/meta/CreateERDForMeta.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/erd/meta/ERDDoctypeAndAppModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/erd/meta/ERDDoctypeAndAppModal.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/erd/meta/ERDForMetaDoctype.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/erd/meta/ERDForMetaDoctype.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/erd/meta/MetaGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/erd/meta/MetaGraph.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/features/erd/tables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/features/erd/tables.ts -------------------------------------------------------------------------------- /dashboard/src/pages/overview/Overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/pages/overview/Overview.tsx -------------------------------------------------------------------------------- /dashboard/src/styles/flow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/styles/flow.css -------------------------------------------------------------------------------- /dashboard/src/types/APIData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/APIData.ts -------------------------------------------------------------------------------- /dashboard/src/types/CommitProjectBranch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/CommitProjectBranch.ts -------------------------------------------------------------------------------- /dashboard/src/types/Core/DocField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/Core/DocField.ts -------------------------------------------------------------------------------- /dashboard/src/types/Core/DocPerm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/Core/DocPerm.ts -------------------------------------------------------------------------------- /dashboard/src/types/Core/DocType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/Core/DocType.ts -------------------------------------------------------------------------------- /dashboard/src/types/Core/DocTypeAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/Core/DocTypeAction.ts -------------------------------------------------------------------------------- /dashboard/src/types/Core/DocTypeLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/Core/DocTypeLink.ts -------------------------------------------------------------------------------- /dashboard/src/types/Core/DocTypeState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/Core/DocTypeState.ts -------------------------------------------------------------------------------- /dashboard/src/types/Core/File.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/Core/File.ts -------------------------------------------------------------------------------- /dashboard/src/types/Integrations/OAuthScope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/Integrations/OAuthScope.ts -------------------------------------------------------------------------------- /dashboard/src/types/Table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/Table.ts -------------------------------------------------------------------------------- /dashboard/src/types/commit/CommitBranchDocumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/commit/CommitBranchDocumentation.ts -------------------------------------------------------------------------------- /dashboard/src/types/commit/CommitDocs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/commit/CommitDocs.ts -------------------------------------------------------------------------------- /dashboard/src/types/commit/CommitDocsFooterItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/commit/CommitDocsFooterItem.ts -------------------------------------------------------------------------------- /dashboard/src/types/commit/CommitDocsGroupItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/commit/CommitDocsGroupItem.ts -------------------------------------------------------------------------------- /dashboard/src/types/commit/CommitDocsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/commit/CommitDocsPage.ts -------------------------------------------------------------------------------- /dashboard/src/types/commit/CommitDocsTopbarItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/commit/CommitDocsTopbarItem.ts -------------------------------------------------------------------------------- /dashboard/src/types/commit/CommitOrganization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/commit/CommitOrganization.ts -------------------------------------------------------------------------------- /dashboard/src/types/commit/CommitProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/commit/CommitProject.ts -------------------------------------------------------------------------------- /dashboard/src/types/commit/CommitProjectBranch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/commit/CommitProjectBranch.ts -------------------------------------------------------------------------------- /dashboard/src/types/commit/CommitSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/commit/CommitSettings.ts -------------------------------------------------------------------------------- /dashboard/src/types/commit/GithubSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/commit/GithubSettings.ts -------------------------------------------------------------------------------- /dashboard/src/types/commit/GithubToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/commit/GithubToken.ts -------------------------------------------------------------------------------- /dashboard/src/types/commit/LinkedCommitDocsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/commit/LinkedCommitDocsPage.ts -------------------------------------------------------------------------------- /dashboard/src/types/commit/OpenAISettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/types/commit/OpenAISettings.ts -------------------------------------------------------------------------------- /dashboard/src/utils/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/utils/defaults.ts -------------------------------------------------------------------------------- /dashboard/src/utils/namespace/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/utils/namespace/defaults.js -------------------------------------------------------------------------------- /dashboard/src/utils/namespace/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/utils/namespace/index.js -------------------------------------------------------------------------------- /dashboard/src/utils/namespace/locals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/utils/namespace/locals.js -------------------------------------------------------------------------------- /dashboard/src/utils/namespace/namespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/utils/namespace/namespace.js -------------------------------------------------------------------------------- /dashboard/src/utils/namespace/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/utils/namespace/sync.js -------------------------------------------------------------------------------- /dashboard/src/utils/removeFrappeFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/utils/removeFrappeFields.ts -------------------------------------------------------------------------------- /dashboard/src/utils/roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/src/utils/roles.ts -------------------------------------------------------------------------------- /dashboard/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /dashboard/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/tailwind.config.js -------------------------------------------------------------------------------- /dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/tsconfig.json -------------------------------------------------------------------------------- /dashboard/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/tsconfig.node.json -------------------------------------------------------------------------------- /dashboard/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/vite.config.ts -------------------------------------------------------------------------------- /dashboard/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/dashboard/yarn.lock -------------------------------------------------------------------------------- /docs/.env.production: -------------------------------------------------------------------------------- 1 | VITE_BASE_PATH='/commit-docs' -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/components.json -------------------------------------------------------------------------------- /docs/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/eslint.config.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/postcss.config.js -------------------------------------------------------------------------------- /docs/proxyOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/proxyOptions.ts -------------------------------------------------------------------------------- /docs/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/App.css -------------------------------------------------------------------------------- /docs/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/App.tsx -------------------------------------------------------------------------------- /docs/src/assets/Docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/assets/Docs.svg -------------------------------------------------------------------------------- /docs/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/assets/react.svg -------------------------------------------------------------------------------- /docs/src/components/common/DynamicIconImport/IconComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/components/common/DynamicIconImport/IconComponent.tsx -------------------------------------------------------------------------------- /docs/src/components/common/ErrorBanner/ErrorBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/components/common/ErrorBanner/ErrorBanner.tsx -------------------------------------------------------------------------------- /docs/src/components/common/FullPageLoader/FullPageLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/components/common/FullPageLoader/FullPageLoader.tsx -------------------------------------------------------------------------------- /docs/src/components/common/FullPageLoader/SpinnerLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/components/common/FullPageLoader/SpinnerLoader.tsx -------------------------------------------------------------------------------- /docs/src/components/common/MarkdownRenderer/MDX.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/components/common/MarkdownRenderer/MDX.tsx -------------------------------------------------------------------------------- /docs/src/components/common/MarkdownRenderer/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/components/common/MarkdownRenderer/markdown.css -------------------------------------------------------------------------------- /docs/src/components/common/PageNotFound/PageNotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/components/common/PageNotFound/PageNotFound.tsx -------------------------------------------------------------------------------- /docs/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /docs/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /docs/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/components/ui/button.tsx -------------------------------------------------------------------------------- /docs/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /docs/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/components/ui/input.tsx -------------------------------------------------------------------------------- /docs/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /docs/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /docs/src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /docs/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /docs/src/config/socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/config/socket.ts -------------------------------------------------------------------------------- /docs/src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /docs/src/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/hooks/useDebounce.ts -------------------------------------------------------------------------------- /docs/src/hooks/useGetCommitDocsDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/hooks/useGetCommitDocsDetails.ts -------------------------------------------------------------------------------- /docs/src/hooks/useGetDoctypeMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/hooks/useGetDoctypeMeta.ts -------------------------------------------------------------------------------- /docs/src/hooks/useGetInstalledApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/hooks/useGetInstalledApp.ts -------------------------------------------------------------------------------- /docs/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/index.css -------------------------------------------------------------------------------- /docs/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/lib/utils.ts -------------------------------------------------------------------------------- /docs/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/main.tsx -------------------------------------------------------------------------------- /docs/src/pages/features/LandingPage/DocsLandingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/pages/features/LandingPage/DocsLandingPage.tsx -------------------------------------------------------------------------------- /docs/src/pages/features/LandingPage/DocsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/pages/features/LandingPage/DocsList.tsx -------------------------------------------------------------------------------- /docs/src/pages/features/LandingPage/HeroSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/pages/features/LandingPage/HeroSection.tsx -------------------------------------------------------------------------------- /docs/src/pages/features/LandingPage/ShootingStars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/pages/features/LandingPage/ShootingStars.tsx -------------------------------------------------------------------------------- /docs/src/pages/features/LandingPage/useGetCommitDocsDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/pages/features/LandingPage/useGetCommitDocsDetails.ts -------------------------------------------------------------------------------- /docs/src/pages/features/custommdxcomponent/CustomCodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/pages/features/custommdxcomponent/CustomCodeBlock.tsx -------------------------------------------------------------------------------- /docs/src/pages/features/custommdxcomponent/CustomHeading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/pages/features/custommdxcomponent/CustomHeading.tsx -------------------------------------------------------------------------------- /docs/src/pages/features/docs/DocsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/pages/features/docs/DocsPage.tsx -------------------------------------------------------------------------------- /docs/src/pages/features/docs/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/pages/features/docs/Footer.tsx -------------------------------------------------------------------------------- /docs/src/pages/features/docs/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/pages/features/docs/Navbar.tsx -------------------------------------------------------------------------------- /docs/src/pages/features/docs/OnThisPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/pages/features/docs/OnThisPage.tsx -------------------------------------------------------------------------------- /docs/src/pages/features/docs/PageContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/pages/features/docs/PageContent.tsx -------------------------------------------------------------------------------- /docs/src/pages/features/docs/Renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/pages/features/docs/Renderer.tsx -------------------------------------------------------------------------------- /docs/src/pages/features/docs/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/pages/features/docs/Sidebar.tsx -------------------------------------------------------------------------------- /docs/src/pages/features/docs/ViewDocs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/pages/features/docs/ViewDocs.tsx -------------------------------------------------------------------------------- /docs/src/pages/features/docs/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/pages/features/docs/docs.ts -------------------------------------------------------------------------------- /docs/src/types/APIData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/APIData.ts -------------------------------------------------------------------------------- /docs/src/types/CommitProjectBranch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/CommitProjectBranch.ts -------------------------------------------------------------------------------- /docs/src/types/Core/DocField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/Core/DocField.ts -------------------------------------------------------------------------------- /docs/src/types/Core/DocPerm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/Core/DocPerm.ts -------------------------------------------------------------------------------- /docs/src/types/Core/DocType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/Core/DocType.ts -------------------------------------------------------------------------------- /docs/src/types/Core/DocTypeAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/Core/DocTypeAction.ts -------------------------------------------------------------------------------- /docs/src/types/Core/DocTypeLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/Core/DocTypeLink.ts -------------------------------------------------------------------------------- /docs/src/types/Core/DocTypeState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/Core/DocTypeState.ts -------------------------------------------------------------------------------- /docs/src/types/Core/File.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/Core/File.ts -------------------------------------------------------------------------------- /docs/src/types/Integrations/OAuthScope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/Integrations/OAuthScope.ts -------------------------------------------------------------------------------- /docs/src/types/Table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/Table.ts -------------------------------------------------------------------------------- /docs/src/types/commit/CommitBranchDocumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/commit/CommitBranchDocumentation.ts -------------------------------------------------------------------------------- /docs/src/types/commit/CommitDocs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/commit/CommitDocs.ts -------------------------------------------------------------------------------- /docs/src/types/commit/CommitDocsFooterItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/commit/CommitDocsFooterItem.ts -------------------------------------------------------------------------------- /docs/src/types/commit/CommitDocsGroupItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/commit/CommitDocsGroupItem.ts -------------------------------------------------------------------------------- /docs/src/types/commit/CommitDocsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/commit/CommitDocsPage.ts -------------------------------------------------------------------------------- /docs/src/types/commit/CommitDocsTopbarItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/commit/CommitDocsTopbarItem.ts -------------------------------------------------------------------------------- /docs/src/types/commit/CommitOrganization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/commit/CommitOrganization.ts -------------------------------------------------------------------------------- /docs/src/types/commit/CommitProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/commit/CommitProject.ts -------------------------------------------------------------------------------- /docs/src/types/commit/CommitProjectBranch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/commit/CommitProjectBranch.ts -------------------------------------------------------------------------------- /docs/src/types/commit/CommitSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/commit/CommitSettings.ts -------------------------------------------------------------------------------- /docs/src/types/commit/GithubSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/commit/GithubSettings.ts -------------------------------------------------------------------------------- /docs/src/types/commit/GithubToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/commit/GithubToken.ts -------------------------------------------------------------------------------- /docs/src/types/commit/LinkedCommitDocsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/commit/LinkedCommitDocsPage.ts -------------------------------------------------------------------------------- /docs/src/types/commit/OpenAISettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/types/commit/OpenAISettings.ts -------------------------------------------------------------------------------- /docs/src/utils/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/utils/defaults.ts -------------------------------------------------------------------------------- /docs/src/utils/namespace/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/utils/namespace/defaults.js -------------------------------------------------------------------------------- /docs/src/utils/namespace/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/utils/namespace/index.js -------------------------------------------------------------------------------- /docs/src/utils/namespace/locals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/utils/namespace/locals.js -------------------------------------------------------------------------------- /docs/src/utils/namespace/namespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/utils/namespace/namespace.js -------------------------------------------------------------------------------- /docs/src/utils/namespace/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/src/utils/namespace/sync.js -------------------------------------------------------------------------------- /docs/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /docs/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/tailwind.config.js -------------------------------------------------------------------------------- /docs/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/tsconfig.app.json -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /docs/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/tsconfig.node.json -------------------------------------------------------------------------------- /docs/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/vite.config.ts -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/docs/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/setup.py -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Commit-Company/commit/HEAD/yarn.lock --------------------------------------------------------------------------------