├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── LICENSE-AGPL ├── README.md ├── assets ├── dk_banner.png └── welcome.png ├── backend ├── .DS_Store ├── api │ ├── .env.example │ ├── .eslintrc.js │ ├── .gitignore │ ├── .nvmrc │ ├── .prettierrc │ ├── README.md │ ├── docs │ │ ├── E2E.md │ │ ├── migrations.md │ │ └── unit_test.md │ ├── nest-cli.json │ ├── package-lock.json │ ├── package.json │ ├── railway.toml │ ├── scripts │ │ └── run-migrations.sh │ ├── src │ │ ├── ai │ │ │ ├── CHANGELOG.md │ │ │ ├── ai.controller.ts │ │ │ ├── ai.module.ts │ │ │ ├── ai.service.ts │ │ │ ├── queue │ │ │ │ ├── rate-limiter.service.ts │ │ │ │ └── test │ │ │ │ │ └── rate-limiter.service.spec.ts │ │ │ ├── streaming.service.ts │ │ │ └── test │ │ │ │ ├── ai.controller.spec.ts │ │ │ │ ├── ai.service.spec.ts │ │ │ │ └── streaming.service.spec.ts │ │ ├── app.controller.ts │ │ ├── app.module.ts │ │ ├── app.service.ts │ │ ├── auth │ │ │ ├── auth.controller.ts │ │ │ ├── auth.module.ts │ │ │ ├── auth.service.ts │ │ │ ├── dto │ │ │ │ ├── login.dto.ts │ │ │ │ ├── password-check.dto.ts │ │ │ │ └── signup.dto.ts │ │ │ ├── entities │ │ │ │ └── refresh-token.entity.ts │ │ │ ├── guards │ │ │ │ ├── jwt-auth.guard.ts │ │ │ │ ├── local-auth.guard.ts │ │ │ │ ├── service-auth.guard.ts │ │ │ │ └── test │ │ │ │ │ ├── jwt-auth.guard.spec.ts │ │ │ │ │ ├── local-auth.guard.spec.ts │ │ │ │ │ └── service-auth.guard.spec.ts │ │ │ ├── refresh-token.service.ts │ │ │ ├── services │ │ │ │ ├── password.service.spec.ts │ │ │ │ └── password.service.ts │ │ │ ├── strategies │ │ │ │ ├── jwt.strategy.ts │ │ │ │ ├── local.strategy.ts │ │ │ │ └── test │ │ │ │ │ └── jwt.strategy.spec.ts │ │ │ ├── test │ │ │ │ ├── auth.controller.spec.ts │ │ │ │ ├── auth.service.spec.ts │ │ │ │ └── refresh-token.service.spec.ts │ │ │ └── validators │ │ │ │ ├── password.validator.spec.ts │ │ │ │ └── password.validator.ts │ │ ├── common │ │ │ └── guards │ │ │ │ └── custom-throttler.guard.ts │ │ ├── config │ │ │ └── database.config.ts │ │ ├── credits │ │ │ ├── CHANGELOG.md │ │ │ ├── credits.controller.ts │ │ │ ├── credits.module.ts │ │ │ ├── credits.service.ts │ │ │ ├── dto │ │ │ │ └── estimate-credits.dto.ts │ │ │ ├── entities │ │ │ │ └── credit-usage.entity.ts │ │ │ └── test │ │ │ │ ├── credits.controller.spec.ts │ │ │ │ └── credits.service.spec.ts │ │ ├── main.ts │ │ ├── migration-data-source.ts │ │ ├── migrations │ │ │ ├── 1752185454246-CreateWaitlistTable.ts │ │ │ └── 1752185454247-CreatePostgresConnectionsTable.ts │ │ ├── postgres-proxy │ │ │ ├── dto │ │ │ │ ├── connection.dto.ts │ │ │ │ ├── query.dto.ts │ │ │ │ └── schema.dto.ts │ │ │ ├── entities │ │ │ │ └── postgres-connection.entity.ts │ │ │ ├── postgres-proxy.controller.ts │ │ │ ├── postgres-proxy.module.ts │ │ │ ├── postgres-proxy.service.ts │ │ │ └── utils │ │ │ │ ├── cache.util.spec.ts │ │ │ │ ├── cache.util.ts │ │ │ │ ├── database.util.spec.ts │ │ │ │ ├── database.util.ts │ │ │ │ ├── security.util.spec.ts │ │ │ │ └── security.util.ts │ │ ├── setup-crypto.js │ │ ├── slack │ │ │ ├── slack.module.ts │ │ │ └── slack.service.ts │ │ ├── subscriptions │ │ │ ├── CHANGELOG.md │ │ │ ├── entities │ │ │ │ └── subscription.entity.ts │ │ │ ├── subscriptions.controller.ts │ │ │ ├── subscriptions.module.ts │ │ │ ├── subscriptions.service.ts │ │ │ └── test │ │ │ │ └── subscriptions.service.spec.ts │ │ ├── test │ │ │ └── app.controller.spec.ts │ │ ├── users │ │ │ ├── entities │ │ │ │ └── user.entity.ts │ │ │ ├── test │ │ │ │ └── users.service.spec.ts │ │ │ ├── users.controller.ts │ │ │ ├── users.module.ts │ │ │ └── users.service.ts │ │ ├── utils │ │ │ ├── cors.utils.spec.ts │ │ │ └── cors.utils.ts │ │ ├── waitlist │ │ │ ├── dto │ │ │ │ └── create-waitlist.dto.ts │ │ │ ├── entities │ │ │ │ └── waitlist.entity.ts │ │ │ ├── waitlist.controller.ts │ │ │ ├── waitlist.module.ts │ │ │ └── waitlist.service.ts │ │ └── workspaces │ │ │ ├── entities │ │ │ ├── workspace-member.entity.ts │ │ │ └── workspace.entity.ts │ │ │ ├── workspaces.controller.ts │ │ │ ├── workspaces.module.ts │ │ │ └── workspaces.service.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── collection │ └── v0.2.0 │ │ ├── 05_07_2025.json │ │ ├── database-relationships.md │ │ └── diagram.png ├── feedback-api │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ └── wrangler.jsonc └── integration_tests │ ├── .gitignore │ ├── .nvmrc │ ├── README.md │ ├── fixtures │ ├── auth.fixtures.ts │ ├── credit.fixtures.ts │ ├── index.ts │ ├── subscription.fixtures.ts │ ├── user.fixtures.ts │ └── workspace.fixtures.ts │ ├── package-lock.json │ ├── package.json │ ├── setup │ ├── database-setup.ts │ ├── database-utils.ts │ ├── global-setup.js │ ├── global-teardown.js │ └── jest.setup.ts │ ├── tests │ ├── auth.spec.ts │ ├── business-logic.spec.ts │ ├── credits.spec.ts │ ├── subscriptions.spec.ts │ ├── users.spec.ts │ └── workspaces.spec.ts │ ├── tsconfig.json │ └── utils │ └── test-helpers.ts ├── cli-node ├── .gitignore ├── LICENSE ├── README.md ├── bin │ └── datakit.js ├── lib │ ├── server.js │ ├── system.js │ └── updater.js ├── notes.md ├── package-lock.json ├── package.json └── scripts │ └── copy-dist.js ├── cli-python ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── datakit_local │ ├── __init__.py │ ├── cli.py │ └── server.py ├── notes.md └── setup.py ├── docker ├── .dockerignore ├── .env.example ├── .gitignore ├── Dockerfile ├── README.md ├── build-docker.sh ├── docker-compose.yml ├── inject-env.sh ├── nginx.conf └── notes.md ├── frontend ├── .env.development ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── TODO.md ├── components.json ├── eslint.config.js ├── functions │ └── video │ │ └── [[path]].js ├── index.html ├── jest.config.js ├── package-lock.json ├── package.json ├── public │ ├── _headers │ ├── datakit.png │ └── locales │ │ ├── en │ │ └── translation.json │ │ └── pt │ │ └── translation.json ├── src │ ├── App.css │ ├── App.tsx │ ├── assets │ │ ├── anthropic.webp │ │ ├── csv.png │ │ ├── datakit.png │ │ ├── datakitShort.png │ │ ├── demo.png │ │ ├── demo2.png │ │ ├── demo3.png │ │ ├── demo4.png │ │ ├── discord.png │ │ ├── drive.svg │ │ ├── duckdb.svg │ │ ├── gcs.svg │ │ ├── groq.png │ │ ├── huggingface.png │ │ ├── intro.png │ │ ├── json.png │ │ ├── md.png │ │ ├── ollama.webp │ │ ├── openai.webp │ │ ├── parquet.png │ │ ├── postgres.png │ │ ├── react.svg │ │ ├── s3.png │ │ └── xlsx.png │ ├── components │ │ ├── auth │ │ │ ├── AuthGate.tsx │ │ │ ├── AuthModal.tsx │ │ │ ├── ProtectedRoute.tsx │ │ │ └── UserMenu.tsx │ │ ├── charts │ │ │ ├── ChartBuilder.tsx │ │ │ └── utils │ │ │ │ └── chartParser.ts │ │ ├── common │ │ │ ├── AIAssistantSidebar.tsx │ │ │ ├── ActionButtons.tsx │ │ │ ├── ConsentPopup.tsx │ │ │ ├── DownloadButton.tsx │ │ │ ├── ErrorSnackbar.tsx │ │ │ ├── GlobalDropZone.tsx │ │ │ ├── GoogleSheetsMetadata.tsx │ │ │ ├── HelpDropdown.tsx │ │ │ ├── LanguageSwitcher.tsx │ │ │ ├── MarkdownRenderer.tsx │ │ │ ├── RemoteDataImportPanel.tsx │ │ │ ├── SEO.tsx │ │ │ ├── SettingsPopover.tsx │ │ │ ├── SidebarFeedbackButton.tsx │ │ │ ├── SuccessSnackbar.tsx │ │ │ └── import-modal │ │ │ │ ├── CustomURLPanel.tsx │ │ │ │ ├── GCSImportPanel.tsx │ │ │ │ ├── GoogleDrivePanel.tsx │ │ │ │ ├── GoogleSheetsPanel.tsx │ │ │ │ ├── GoogleSheetsPreviewCard.tsx │ │ │ │ ├── GoogleSheetsPublishGuide.tsx │ │ │ │ ├── HuggingFacePanel.tsx │ │ │ │ ├── ImportSuccessAnimation.tsx │ │ │ │ ├── MotherDuckPanel.tsx │ │ │ │ ├── PostgreSQLPanel.tsx │ │ │ │ ├── S3ImportPanel.tsx │ │ │ │ └── motherduck │ │ │ │ ├── ConnectionStatus.tsx │ │ │ │ └── TokenInput.tsx │ │ ├── data-grid │ │ │ ├── CellContextMenu.tsx │ │ │ ├── DataPreviewGrid.tsx │ │ │ ├── DataPreviewPagination.tsx │ │ │ ├── DemoVideoModal.tsx │ │ │ ├── DraggableQueryResults.tsx │ │ │ ├── DropZonesOverlay.tsx │ │ │ ├── EmptyDataState.tsx │ │ │ ├── FileTabs.tsx │ │ │ ├── UnifiedGrid.tsx │ │ │ ├── column-actions │ │ │ │ └── SimpleColumnActionPanel.tsx │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ ├── useCellFormatting.ts │ │ │ │ ├── useCellInteraction.ts │ │ │ │ ├── useColumnSorting.ts │ │ │ │ ├── useFileUpload.ts │ │ │ │ └── useGridEditing.ts │ │ │ └── table-header │ │ │ │ ├── ColumnHeaderCell.tsx │ │ │ │ ├── MiniHistogram.tsx │ │ │ │ └── TypeIndicator.tsx │ │ ├── demo │ │ │ └── DemoWizard.tsx │ │ ├── icons │ │ │ ├── DuckDBIcon.tsx │ │ │ └── GoogleSheetsIcon.tsx │ │ ├── layout │ │ │ ├── MainLayout.tsx │ │ │ ├── SettingsSidebar.tsx │ │ │ ├── Sidebar.tsx │ │ │ ├── SidebarToggle.tsx │ │ │ └── SplitViewContainer.tsx │ │ ├── navigation │ │ │ ├── TabNavigation.tsx │ │ │ └── ViewModeSelector.tsx │ │ ├── settings │ │ │ ├── AISettings.tsx │ │ │ ├── AppearanceSettings.tsx │ │ │ ├── SubscriptionSettings.tsx │ │ │ └── WorkspaceSettings.tsx │ │ ├── tabs │ │ │ ├── DataPreviewTab.tsx │ │ │ ├── NotebooksTab.tsx │ │ │ ├── QueryTab.tsx │ │ │ ├── ai │ │ │ │ ├── ApiKeyModal.tsx │ │ │ │ ├── ContextPills.tsx │ │ │ │ ├── ErrorDisplay.tsx │ │ │ │ ├── LocalModelManager.tsx │ │ │ │ ├── ModelSelector.tsx │ │ │ │ ├── OllamaModelManager.tsx │ │ │ │ ├── SidebarPythonCodeCard.tsx │ │ │ │ ├── SidebarSQLQueryCard.tsx │ │ │ │ ├── StatusIndicator.tsx │ │ │ │ └── utils │ │ │ │ │ ├── aiResponseParser.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── smartParsing.ts │ │ │ │ │ └── validation.ts │ │ │ ├── notebooks │ │ │ │ ├── CellDivider.tsx │ │ │ │ ├── MonacoErrorBoundary.tsx │ │ │ │ ├── NotebookErrorBoundary.tsx │ │ │ │ ├── NotebooksWorkspace.tsx │ │ │ │ ├── PackageManager.tsx │ │ │ │ ├── PythonCell.tsx │ │ │ │ ├── ScriptHistory.tsx │ │ │ │ ├── ScriptTemplates.tsx │ │ │ │ └── VariableInspector.tsx │ │ │ ├── preview │ │ │ │ └── inspector │ │ │ │ │ ├── InspectorPanel.tsx │ │ │ │ │ ├── QuickOverview.tsx │ │ │ │ │ ├── components │ │ │ │ │ ├── ColumnExportButton.tsx │ │ │ │ │ ├── ColumnRow.tsx │ │ │ │ │ ├── ColumnSearch.tsx │ │ │ │ │ ├── EmptyStates.tsx │ │ │ │ │ ├── ExportPanel.tsx │ │ │ │ │ ├── LoadingStates.tsx │ │ │ │ │ ├── Overview.tsx │ │ │ │ │ ├── ProblemsView.tsx │ │ │ │ │ ├── QuickActionsBar.tsx │ │ │ │ │ ├── RowDetailsModal.tsx │ │ │ │ │ ├── ViewSwitcher.tsx │ │ │ │ │ └── charts │ │ │ │ │ │ ├── ChartContainer.tsx │ │ │ │ │ │ ├── MiniChart.tsx │ │ │ │ │ │ ├── NivoCategoricalChart.tsx │ │ │ │ │ │ ├── NivoHistogram.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── hooks │ │ │ │ │ ├── useAutoAnalysis.tsx │ │ │ │ │ └── useColumnFilter.ts │ │ │ │ │ └── utils │ │ │ │ │ ├── chartExportUtils.ts │ │ │ │ │ ├── dataExportUtils.ts │ │ │ │ │ ├── exportUtils.ts │ │ │ │ │ ├── htmlReportUtils.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── problemExportUtils.ts │ │ │ │ │ └── reportExportUtils.ts │ │ │ └── query │ │ │ │ ├── DraftBadge.tsx │ │ │ │ ├── MonacoEditor.tsx │ │ │ │ ├── QueryHistory.tsx │ │ │ │ ├── QueryWorkspace.tsx │ │ │ │ ├── SchemaBrowser.tsx │ │ │ │ ├── constants.ts │ │ │ │ ├── query-results │ │ │ │ ├── QueryResults.tsx │ │ │ │ ├── QueryResultsEmptyState.tsx │ │ │ │ ├── QueryResultsHeader.tsx │ │ │ │ ├── QueryResultsPagination.tsx │ │ │ │ ├── QueryResultsTable.tsx │ │ │ │ ├── SaveAsTableModal.tsx │ │ │ │ ├── TableCell.tsx │ │ │ │ └── useQueryColumnFormatting.ts │ │ │ │ └── useWorkspaceUIState.ts │ │ ├── ui │ │ │ ├── Button.tsx │ │ │ ├── GlareHover.tsx │ │ │ ├── LoadingDots.tsx │ │ │ ├── NotebookEditor.tsx │ │ │ ├── SaveDialog.tsx │ │ │ ├── Tooltip.tsx │ │ │ └── UnsavedChangesDialog.tsx │ │ └── workspace │ │ │ ├── FolderTreeView.tsx │ │ │ └── SidebarToolbar.tsx │ ├── constants │ │ └── public_datasets.ts │ ├── global.d.ts │ ├── hooks │ │ ├── ai │ │ │ ├── useAIOperations.ts │ │ │ ├── useAIQueryExecution.ts │ │ │ ├── useStreamingStatus.ts │ │ │ └── useTokenUsage.ts │ │ ├── auth │ │ │ ├── useAuth.ts │ │ │ └── useRequireAuth.ts │ │ ├── notebooks │ │ │ ├── useFileAwareNotebook.ts │ │ │ ├── useNotebookManagement.ts │ │ │ ├── useNotebooksActions.ts │ │ │ └── usePanelNavigation.ts │ │ ├── query │ │ │ ├── useQueryExecution.ts │ │ │ ├── useQueryHistory.ts │ │ │ ├── useQueryInitialization.ts │ │ │ ├── useQueryOptimization.ts │ │ │ ├── useQueryResultsImport.ts │ │ │ └── useSchemaInfo.ts │ │ ├── remote │ │ │ ├── custom │ │ │ │ └── useCustomURLImport.ts │ │ │ ├── drive │ │ │ │ └── useGoogleDriveImport.ts │ │ │ ├── gcs │ │ │ │ └── useGCSImport.ts │ │ │ ├── huggingface │ │ │ │ ├── api.ts │ │ │ │ ├── duckdb.ts │ │ │ │ ├── importStrategies.ts │ │ │ │ ├── network.ts │ │ │ │ ├── types.ts │ │ │ │ ├── useHuggingFaceImport.ts │ │ │ │ └── utils.ts │ │ │ ├── interfaces │ │ │ │ └── types.ts │ │ │ ├── motherduck │ │ │ │ └── useMotherDuck.ts │ │ │ ├── s3 │ │ │ │ └── useS3Import.ts │ │ │ ├── sheets │ │ │ │ └── useGoogleSheetsImport.ts │ │ │ ├── url │ │ │ │ └── useUrlDatasetImport.ts │ │ │ ├── usePublicDatasets.ts │ │ │ └── useRemoteDatasetImport.ts │ │ ├── stream │ │ │ ├── README.md │ │ │ ├── useDataParser.ts │ │ │ ├── useStreamingCSVParser.ts │ │ │ └── useStreamingJSONParser.ts │ │ ├── useAnalytics.ts │ │ ├── useColumnStats.ts │ │ ├── useCredits.ts │ │ ├── useDataPreview.ts │ │ ├── useDemoFileDrops.ts │ │ ├── useDirectFileImport.ts │ │ ├── useDraggableQueryResults.ts │ │ ├── useFileAccess.ts │ │ ├── useFileImport.ts │ │ ├── useHomePageLogic.ts │ │ ├── useIframeDetection.ts │ │ ├── useKeyboardShortcuts.ts │ │ ├── useLazyFileLoader.ts │ │ ├── useMediaQuery.ts │ │ ├── useNotifications.tsx │ │ ├── usePopover.tsx │ │ ├── usePostHogIdentification.ts │ │ ├── useRemoteFileImport.ts │ │ ├── useResizable.ts │ │ ├── useResizablePanels.ts │ │ ├── useTabTracking.ts │ │ ├── useUrlParameterHandler.ts │ │ └── useWorkspaceState.ts │ ├── index.css │ ├── lib │ │ ├── ai │ │ │ ├── aiService.ts │ │ │ ├── corsProxy.ts │ │ │ ├── modelManager.ts │ │ │ ├── prompts │ │ │ │ └── sqlPrompts.ts │ │ │ ├── providers │ │ │ │ ├── README.md │ │ │ │ ├── anthropic.ts │ │ │ │ ├── datakit.ts │ │ │ │ ├── groq.ts │ │ │ │ ├── ollama.ts │ │ │ │ ├── openai.ts │ │ │ │ ├── safeApiProvider.ts │ │ │ │ └── webllm.ts │ │ │ └── types.ts │ │ ├── api │ │ │ ├── aiService.ts │ │ │ ├── apiClient.ts │ │ │ ├── authService.ts │ │ │ ├── debugHelper.ts │ │ │ ├── postgresService.ts │ │ │ ├── userService.ts │ │ │ └── workspaceService.ts │ │ ├── columnActions │ │ │ ├── actions.ts │ │ │ └── columnActionService.ts │ │ ├── data │ │ │ └── dataProcessingUtil.ts │ │ ├── duckdb │ │ │ ├── config.ts │ │ │ ├── ingestion │ │ │ │ ├── analyzeTextFile.ts │ │ │ │ ├── convertDuckDBColumnTypes.ts │ │ │ │ ├── csv │ │ │ │ │ └── utils.ts │ │ │ │ ├── json │ │ │ │ │ └── utils.ts │ │ │ │ └── tables.ts │ │ │ ├── init.ts │ │ │ ├── inspector │ │ │ │ ├── README.md │ │ │ │ ├── analysis │ │ │ │ │ ├── basic.ts │ │ │ │ │ ├── categorical.ts │ │ │ │ │ ├── numeric.ts │ │ │ │ │ ├── quality.ts │ │ │ │ │ └── text.ts │ │ │ │ ├── inspector.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils │ │ │ │ │ ├── bigint.ts │ │ │ │ │ ├── filtering.ts │ │ │ │ │ └── validation.ts │ │ │ ├── query.ts │ │ │ ├── query │ │ │ │ └── pagination.ts │ │ │ ├── sqlSanitizer.ts │ │ │ ├── transformations.ts │ │ │ ├── types.ts │ │ │ ├── utils.ts │ │ │ └── utils │ │ │ │ ├── passwordValidator.ts │ │ │ │ ├── queryRouter.test.ts │ │ │ │ └── queryRouter.ts │ │ ├── excelConverter.ts │ │ ├── google │ │ │ └── sheetsUtils.ts │ │ ├── i18n.ts │ │ ├── python │ │ │ ├── executor.ts │ │ │ ├── fileTemplates.ts │ │ │ ├── init.ts │ │ │ ├── templates.ts │ │ │ ├── types.ts │ │ │ └── welcomeCells.ts │ │ ├── streamReader.ts │ │ └── utils.ts │ ├── main.tsx │ ├── pages │ │ ├── DatasetImport.tsx │ │ ├── Home.tsx │ │ ├── Info.tsx │ │ ├── NotFound.tsx │ │ ├── Privacy.tsx │ │ ├── Settings.tsx │ │ └── Viewer.tsx │ ├── services │ │ └── creditsService.ts │ ├── store │ │ ├── aiStore.ts │ │ ├── appStore.ts │ │ ├── authStore.ts │ │ ├── constants.ts │ │ ├── dataPreviewStore.ts │ │ ├── duckDBStore.ts │ │ ├── folderStore.ts │ │ ├── inspectorStore.ts │ │ ├── postgresStore.ts │ │ ├── pythonStore.ts │ │ ├── selectors │ │ │ ├── appSelectors.ts │ │ │ └── duckdbSelectors.ts │ │ └── workspaceStore.ts │ ├── types │ │ ├── ai.ts │ │ ├── auth.ts │ │ ├── columnActions.ts │ │ ├── csv.ts │ │ ├── folder.ts │ │ ├── grid.ts │ │ ├── json.ts │ │ ├── multiFile.ts │ │ ├── postgres.ts │ │ ├── remoteImport.ts │ │ └── workspace.ts │ ├── utils │ │ ├── datasetUrlHandler.ts │ │ ├── exportUtils.ts │ │ ├── notebookExport.ts │ │ ├── queryExport.ts │ │ └── theme.ts │ └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── wasm-src │ └── data-processing │ ├── Cargo.toml │ ├── build.sh │ └── src │ ├── csv.rs │ └── lib.rs └── idea └── DATAKIT_FILE_SHARING_PLAN.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-AGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/LICENSE-AGPL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/README.md -------------------------------------------------------------------------------- /assets/dk_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/assets/dk_banner.png -------------------------------------------------------------------------------- /assets/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/assets/welcome.png -------------------------------------------------------------------------------- /backend/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/.DS_Store -------------------------------------------------------------------------------- /backend/api/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/.env.example -------------------------------------------------------------------------------- /backend/api/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/.eslintrc.js -------------------------------------------------------------------------------- /backend/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/.gitignore -------------------------------------------------------------------------------- /backend/api/.nvmrc: -------------------------------------------------------------------------------- 1 | 20.15.1 -------------------------------------------------------------------------------- /backend/api/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/.prettierrc -------------------------------------------------------------------------------- /backend/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/README.md -------------------------------------------------------------------------------- /backend/api/docs/E2E.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/api/docs/migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/docs/migrations.md -------------------------------------------------------------------------------- /backend/api/docs/unit_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/docs/unit_test.md -------------------------------------------------------------------------------- /backend/api/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/nest-cli.json -------------------------------------------------------------------------------- /backend/api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/package-lock.json -------------------------------------------------------------------------------- /backend/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/package.json -------------------------------------------------------------------------------- /backend/api/railway.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/railway.toml -------------------------------------------------------------------------------- /backend/api/scripts/run-migrations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/scripts/run-migrations.sh -------------------------------------------------------------------------------- /backend/api/src/ai/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/ai/CHANGELOG.md -------------------------------------------------------------------------------- /backend/api/src/ai/ai.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/ai/ai.controller.ts -------------------------------------------------------------------------------- /backend/api/src/ai/ai.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/ai/ai.module.ts -------------------------------------------------------------------------------- /backend/api/src/ai/ai.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/ai/ai.service.ts -------------------------------------------------------------------------------- /backend/api/src/ai/queue/rate-limiter.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/ai/queue/rate-limiter.service.ts -------------------------------------------------------------------------------- /backend/api/src/ai/queue/test/rate-limiter.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/ai/queue/test/rate-limiter.service.spec.ts -------------------------------------------------------------------------------- /backend/api/src/ai/streaming.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/ai/streaming.service.ts -------------------------------------------------------------------------------- /backend/api/src/ai/test/ai.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/ai/test/ai.controller.spec.ts -------------------------------------------------------------------------------- /backend/api/src/ai/test/ai.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/ai/test/ai.service.spec.ts -------------------------------------------------------------------------------- /backend/api/src/ai/test/streaming.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/ai/test/streaming.service.spec.ts -------------------------------------------------------------------------------- /backend/api/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/app.controller.ts -------------------------------------------------------------------------------- /backend/api/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/app.module.ts -------------------------------------------------------------------------------- /backend/api/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/app.service.ts -------------------------------------------------------------------------------- /backend/api/src/auth/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/auth.controller.ts -------------------------------------------------------------------------------- /backend/api/src/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/auth.module.ts -------------------------------------------------------------------------------- /backend/api/src/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/auth.service.ts -------------------------------------------------------------------------------- /backend/api/src/auth/dto/login.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/dto/login.dto.ts -------------------------------------------------------------------------------- /backend/api/src/auth/dto/password-check.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/dto/password-check.dto.ts -------------------------------------------------------------------------------- /backend/api/src/auth/dto/signup.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/dto/signup.dto.ts -------------------------------------------------------------------------------- /backend/api/src/auth/entities/refresh-token.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/entities/refresh-token.entity.ts -------------------------------------------------------------------------------- /backend/api/src/auth/guards/jwt-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/guards/jwt-auth.guard.ts -------------------------------------------------------------------------------- /backend/api/src/auth/guards/local-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/guards/local-auth.guard.ts -------------------------------------------------------------------------------- /backend/api/src/auth/guards/service-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/guards/service-auth.guard.ts -------------------------------------------------------------------------------- /backend/api/src/auth/guards/test/jwt-auth.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/guards/test/jwt-auth.guard.spec.ts -------------------------------------------------------------------------------- /backend/api/src/auth/guards/test/local-auth.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/guards/test/local-auth.guard.spec.ts -------------------------------------------------------------------------------- /backend/api/src/auth/guards/test/service-auth.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/guards/test/service-auth.guard.spec.ts -------------------------------------------------------------------------------- /backend/api/src/auth/refresh-token.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/refresh-token.service.ts -------------------------------------------------------------------------------- /backend/api/src/auth/services/password.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/services/password.service.spec.ts -------------------------------------------------------------------------------- /backend/api/src/auth/services/password.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/services/password.service.ts -------------------------------------------------------------------------------- /backend/api/src/auth/strategies/jwt.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/strategies/jwt.strategy.ts -------------------------------------------------------------------------------- /backend/api/src/auth/strategies/local.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/strategies/local.strategy.ts -------------------------------------------------------------------------------- /backend/api/src/auth/strategies/test/jwt.strategy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/strategies/test/jwt.strategy.spec.ts -------------------------------------------------------------------------------- /backend/api/src/auth/test/auth.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/test/auth.controller.spec.ts -------------------------------------------------------------------------------- /backend/api/src/auth/test/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/test/auth.service.spec.ts -------------------------------------------------------------------------------- /backend/api/src/auth/test/refresh-token.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/test/refresh-token.service.spec.ts -------------------------------------------------------------------------------- /backend/api/src/auth/validators/password.validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/validators/password.validator.spec.ts -------------------------------------------------------------------------------- /backend/api/src/auth/validators/password.validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/auth/validators/password.validator.ts -------------------------------------------------------------------------------- /backend/api/src/common/guards/custom-throttler.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/common/guards/custom-throttler.guard.ts -------------------------------------------------------------------------------- /backend/api/src/config/database.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/config/database.config.ts -------------------------------------------------------------------------------- /backend/api/src/credits/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/credits/CHANGELOG.md -------------------------------------------------------------------------------- /backend/api/src/credits/credits.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/credits/credits.controller.ts -------------------------------------------------------------------------------- /backend/api/src/credits/credits.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/credits/credits.module.ts -------------------------------------------------------------------------------- /backend/api/src/credits/credits.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/credits/credits.service.ts -------------------------------------------------------------------------------- /backend/api/src/credits/dto/estimate-credits.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/credits/dto/estimate-credits.dto.ts -------------------------------------------------------------------------------- /backend/api/src/credits/entities/credit-usage.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/credits/entities/credit-usage.entity.ts -------------------------------------------------------------------------------- /backend/api/src/credits/test/credits.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/credits/test/credits.controller.spec.ts -------------------------------------------------------------------------------- /backend/api/src/credits/test/credits.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/credits/test/credits.service.spec.ts -------------------------------------------------------------------------------- /backend/api/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/main.ts -------------------------------------------------------------------------------- /backend/api/src/migration-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/migration-data-source.ts -------------------------------------------------------------------------------- /backend/api/src/migrations/1752185454246-CreateWaitlistTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/migrations/1752185454246-CreateWaitlistTable.ts -------------------------------------------------------------------------------- /backend/api/src/migrations/1752185454247-CreatePostgresConnectionsTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/migrations/1752185454247-CreatePostgresConnectionsTable.ts -------------------------------------------------------------------------------- /backend/api/src/postgres-proxy/dto/connection.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/postgres-proxy/dto/connection.dto.ts -------------------------------------------------------------------------------- /backend/api/src/postgres-proxy/dto/query.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/postgres-proxy/dto/query.dto.ts -------------------------------------------------------------------------------- /backend/api/src/postgres-proxy/dto/schema.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/postgres-proxy/dto/schema.dto.ts -------------------------------------------------------------------------------- /backend/api/src/postgres-proxy/entities/postgres-connection.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/postgres-proxy/entities/postgres-connection.entity.ts -------------------------------------------------------------------------------- /backend/api/src/postgres-proxy/postgres-proxy.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/postgres-proxy/postgres-proxy.controller.ts -------------------------------------------------------------------------------- /backend/api/src/postgres-proxy/postgres-proxy.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/postgres-proxy/postgres-proxy.module.ts -------------------------------------------------------------------------------- /backend/api/src/postgres-proxy/postgres-proxy.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/postgres-proxy/postgres-proxy.service.ts -------------------------------------------------------------------------------- /backend/api/src/postgres-proxy/utils/cache.util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/postgres-proxy/utils/cache.util.spec.ts -------------------------------------------------------------------------------- /backend/api/src/postgres-proxy/utils/cache.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/postgres-proxy/utils/cache.util.ts -------------------------------------------------------------------------------- /backend/api/src/postgres-proxy/utils/database.util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/postgres-proxy/utils/database.util.spec.ts -------------------------------------------------------------------------------- /backend/api/src/postgres-proxy/utils/database.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/postgres-proxy/utils/database.util.ts -------------------------------------------------------------------------------- /backend/api/src/postgres-proxy/utils/security.util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/postgres-proxy/utils/security.util.spec.ts -------------------------------------------------------------------------------- /backend/api/src/postgres-proxy/utils/security.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/postgres-proxy/utils/security.util.ts -------------------------------------------------------------------------------- /backend/api/src/setup-crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/setup-crypto.js -------------------------------------------------------------------------------- /backend/api/src/slack/slack.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/slack/slack.module.ts -------------------------------------------------------------------------------- /backend/api/src/slack/slack.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/slack/slack.service.ts -------------------------------------------------------------------------------- /backend/api/src/subscriptions/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/subscriptions/CHANGELOG.md -------------------------------------------------------------------------------- /backend/api/src/subscriptions/entities/subscription.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/subscriptions/entities/subscription.entity.ts -------------------------------------------------------------------------------- /backend/api/src/subscriptions/subscriptions.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/subscriptions/subscriptions.controller.ts -------------------------------------------------------------------------------- /backend/api/src/subscriptions/subscriptions.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/subscriptions/subscriptions.module.ts -------------------------------------------------------------------------------- /backend/api/src/subscriptions/subscriptions.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/subscriptions/subscriptions.service.ts -------------------------------------------------------------------------------- /backend/api/src/subscriptions/test/subscriptions.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/subscriptions/test/subscriptions.service.spec.ts -------------------------------------------------------------------------------- /backend/api/src/test/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/test/app.controller.spec.ts -------------------------------------------------------------------------------- /backend/api/src/users/entities/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/users/entities/user.entity.ts -------------------------------------------------------------------------------- /backend/api/src/users/test/users.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/users/test/users.service.spec.ts -------------------------------------------------------------------------------- /backend/api/src/users/users.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/users/users.controller.ts -------------------------------------------------------------------------------- /backend/api/src/users/users.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/users/users.module.ts -------------------------------------------------------------------------------- /backend/api/src/users/users.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/users/users.service.ts -------------------------------------------------------------------------------- /backend/api/src/utils/cors.utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/utils/cors.utils.spec.ts -------------------------------------------------------------------------------- /backend/api/src/utils/cors.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/utils/cors.utils.ts -------------------------------------------------------------------------------- /backend/api/src/waitlist/dto/create-waitlist.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/waitlist/dto/create-waitlist.dto.ts -------------------------------------------------------------------------------- /backend/api/src/waitlist/entities/waitlist.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/waitlist/entities/waitlist.entity.ts -------------------------------------------------------------------------------- /backend/api/src/waitlist/waitlist.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/waitlist/waitlist.controller.ts -------------------------------------------------------------------------------- /backend/api/src/waitlist/waitlist.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/waitlist/waitlist.module.ts -------------------------------------------------------------------------------- /backend/api/src/waitlist/waitlist.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/waitlist/waitlist.service.ts -------------------------------------------------------------------------------- /backend/api/src/workspaces/entities/workspace-member.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/workspaces/entities/workspace-member.entity.ts -------------------------------------------------------------------------------- /backend/api/src/workspaces/entities/workspace.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/workspaces/entities/workspace.entity.ts -------------------------------------------------------------------------------- /backend/api/src/workspaces/workspaces.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/workspaces/workspaces.controller.ts -------------------------------------------------------------------------------- /backend/api/src/workspaces/workspaces.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/workspaces/workspaces.module.ts -------------------------------------------------------------------------------- /backend/api/src/workspaces/workspaces.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/src/workspaces/workspaces.service.ts -------------------------------------------------------------------------------- /backend/api/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/tsconfig.build.json -------------------------------------------------------------------------------- /backend/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/api/tsconfig.json -------------------------------------------------------------------------------- /backend/collection/v0.2.0/05_07_2025.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/collection/v0.2.0/05_07_2025.json -------------------------------------------------------------------------------- /backend/collection/v0.2.0/database-relationships.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/collection/v0.2.0/database-relationships.md -------------------------------------------------------------------------------- /backend/collection/v0.2.0/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/collection/v0.2.0/diagram.png -------------------------------------------------------------------------------- /backend/feedback-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/feedback-api/.gitignore -------------------------------------------------------------------------------- /backend/feedback-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/feedback-api/README.md -------------------------------------------------------------------------------- /backend/feedback-api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/feedback-api/package-lock.json -------------------------------------------------------------------------------- /backend/feedback-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/feedback-api/package.json -------------------------------------------------------------------------------- /backend/feedback-api/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/feedback-api/src/index.ts -------------------------------------------------------------------------------- /backend/feedback-api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/feedback-api/tsconfig.json -------------------------------------------------------------------------------- /backend/feedback-api/wrangler.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/feedback-api/wrangler.jsonc -------------------------------------------------------------------------------- /backend/integration_tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/.gitignore -------------------------------------------------------------------------------- /backend/integration_tests/.nvmrc: -------------------------------------------------------------------------------- 1 | 18.20.7 -------------------------------------------------------------------------------- /backend/integration_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/README.md -------------------------------------------------------------------------------- /backend/integration_tests/fixtures/auth.fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/fixtures/auth.fixtures.ts -------------------------------------------------------------------------------- /backend/integration_tests/fixtures/credit.fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/fixtures/credit.fixtures.ts -------------------------------------------------------------------------------- /backend/integration_tests/fixtures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/fixtures/index.ts -------------------------------------------------------------------------------- /backend/integration_tests/fixtures/subscription.fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/fixtures/subscription.fixtures.ts -------------------------------------------------------------------------------- /backend/integration_tests/fixtures/user.fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/fixtures/user.fixtures.ts -------------------------------------------------------------------------------- /backend/integration_tests/fixtures/workspace.fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/fixtures/workspace.fixtures.ts -------------------------------------------------------------------------------- /backend/integration_tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/package-lock.json -------------------------------------------------------------------------------- /backend/integration_tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/package.json -------------------------------------------------------------------------------- /backend/integration_tests/setup/database-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/setup/database-setup.ts -------------------------------------------------------------------------------- /backend/integration_tests/setup/database-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/setup/database-utils.ts -------------------------------------------------------------------------------- /backend/integration_tests/setup/global-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/setup/global-setup.js -------------------------------------------------------------------------------- /backend/integration_tests/setup/global-teardown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/setup/global-teardown.js -------------------------------------------------------------------------------- /backend/integration_tests/setup/jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/setup/jest.setup.ts -------------------------------------------------------------------------------- /backend/integration_tests/tests/auth.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/tests/auth.spec.ts -------------------------------------------------------------------------------- /backend/integration_tests/tests/business-logic.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/tests/business-logic.spec.ts -------------------------------------------------------------------------------- /backend/integration_tests/tests/credits.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/tests/credits.spec.ts -------------------------------------------------------------------------------- /backend/integration_tests/tests/subscriptions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/tests/subscriptions.spec.ts -------------------------------------------------------------------------------- /backend/integration_tests/tests/users.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/tests/users.spec.ts -------------------------------------------------------------------------------- /backend/integration_tests/tests/workspaces.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/tests/workspaces.spec.ts -------------------------------------------------------------------------------- /backend/integration_tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/tsconfig.json -------------------------------------------------------------------------------- /backend/integration_tests/utils/test-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/backend/integration_tests/utils/test-helpers.ts -------------------------------------------------------------------------------- /cli-node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/cli-node/.gitignore -------------------------------------------------------------------------------- /cli-node/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/cli-node/LICENSE -------------------------------------------------------------------------------- /cli-node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/cli-node/README.md -------------------------------------------------------------------------------- /cli-node/bin/datakit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/cli-node/bin/datakit.js -------------------------------------------------------------------------------- /cli-node/lib/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/cli-node/lib/server.js -------------------------------------------------------------------------------- /cli-node/lib/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/cli-node/lib/system.js -------------------------------------------------------------------------------- /cli-node/lib/updater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/cli-node/lib/updater.js -------------------------------------------------------------------------------- /cli-node/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/cli-node/notes.md -------------------------------------------------------------------------------- /cli-node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/cli-node/package-lock.json -------------------------------------------------------------------------------- /cli-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/cli-node/package.json -------------------------------------------------------------------------------- /cli-node/scripts/copy-dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/cli-node/scripts/copy-dist.js -------------------------------------------------------------------------------- /cli-python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/cli-python/.gitignore -------------------------------------------------------------------------------- /cli-python/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/cli-python/LICENSE -------------------------------------------------------------------------------- /cli-python/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/cli-python/MANIFEST.in -------------------------------------------------------------------------------- /cli-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/cli-python/README.md -------------------------------------------------------------------------------- /cli-python/datakit_local/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/cli-python/datakit_local/__init__.py -------------------------------------------------------------------------------- /cli-python/datakit_local/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/cli-python/datakit_local/cli.py -------------------------------------------------------------------------------- /cli-python/datakit_local/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/cli-python/datakit_local/server.py -------------------------------------------------------------------------------- /cli-python/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/cli-python/notes.md -------------------------------------------------------------------------------- /cli-python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/cli-python/setup.py -------------------------------------------------------------------------------- /docker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/docker/.dockerignore -------------------------------------------------------------------------------- /docker/.env.example: -------------------------------------------------------------------------------- 1 | # Custom Branding (Beta Testing) 2 | VITE_CUSTOM_LOGO_URL=https://your-domain.com/logo.png -------------------------------------------------------------------------------- /docker/.gitignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/build-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/docker/build-docker.sh -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/inject-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/docker/inject-env.sh -------------------------------------------------------------------------------- /docker/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/docker/nginx.conf -------------------------------------------------------------------------------- /docker/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/docker/notes.md -------------------------------------------------------------------------------- /frontend/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/.env.development -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true -------------------------------------------------------------------------------- /frontend/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/.prettierignore -------------------------------------------------------------------------------- /frontend/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/.prettierrc.json -------------------------------------------------------------------------------- /frontend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/LICENSE -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- 1 | ![DataKit](../assets/welcome.png) 2 | -------------------------------------------------------------------------------- /frontend/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/TODO.md -------------------------------------------------------------------------------- /frontend/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/components.json -------------------------------------------------------------------------------- /frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/eslint.config.js -------------------------------------------------------------------------------- /frontend/functions/video/[[path]].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/functions/video/[[path]].js -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/jest.config.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/public/_headers -------------------------------------------------------------------------------- /frontend/public/datakit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/public/datakit.png -------------------------------------------------------------------------------- /frontend/public/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/public/locales/en/translation.json -------------------------------------------------------------------------------- /frontend/public/locales/pt/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/public/locales/pt/translation.json -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/assets/anthropic.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/anthropic.webp -------------------------------------------------------------------------------- /frontend/src/assets/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/csv.png -------------------------------------------------------------------------------- /frontend/src/assets/datakit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/datakit.png -------------------------------------------------------------------------------- /frontend/src/assets/datakitShort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/datakitShort.png -------------------------------------------------------------------------------- /frontend/src/assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/demo.png -------------------------------------------------------------------------------- /frontend/src/assets/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/demo2.png -------------------------------------------------------------------------------- /frontend/src/assets/demo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/demo3.png -------------------------------------------------------------------------------- /frontend/src/assets/demo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/demo4.png -------------------------------------------------------------------------------- /frontend/src/assets/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/discord.png -------------------------------------------------------------------------------- /frontend/src/assets/drive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/drive.svg -------------------------------------------------------------------------------- /frontend/src/assets/duckdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/duckdb.svg -------------------------------------------------------------------------------- /frontend/src/assets/gcs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/gcs.svg -------------------------------------------------------------------------------- /frontend/src/assets/groq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/groq.png -------------------------------------------------------------------------------- /frontend/src/assets/huggingface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/huggingface.png -------------------------------------------------------------------------------- /frontend/src/assets/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/intro.png -------------------------------------------------------------------------------- /frontend/src/assets/json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/json.png -------------------------------------------------------------------------------- /frontend/src/assets/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/md.png -------------------------------------------------------------------------------- /frontend/src/assets/ollama.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/ollama.webp -------------------------------------------------------------------------------- /frontend/src/assets/openai.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/openai.webp -------------------------------------------------------------------------------- /frontend/src/assets/parquet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/parquet.png -------------------------------------------------------------------------------- /frontend/src/assets/postgres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/postgres.png -------------------------------------------------------------------------------- /frontend/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/react.svg -------------------------------------------------------------------------------- /frontend/src/assets/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/s3.png -------------------------------------------------------------------------------- /frontend/src/assets/xlsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/assets/xlsx.png -------------------------------------------------------------------------------- /frontend/src/components/auth/AuthGate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/auth/AuthGate.tsx -------------------------------------------------------------------------------- /frontend/src/components/auth/AuthModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/auth/AuthModal.tsx -------------------------------------------------------------------------------- /frontend/src/components/auth/ProtectedRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/auth/ProtectedRoute.tsx -------------------------------------------------------------------------------- /frontend/src/components/auth/UserMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/auth/UserMenu.tsx -------------------------------------------------------------------------------- /frontend/src/components/charts/ChartBuilder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/charts/ChartBuilder.tsx -------------------------------------------------------------------------------- /frontend/src/components/charts/utils/chartParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/charts/utils/chartParser.ts -------------------------------------------------------------------------------- /frontend/src/components/common/AIAssistantSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/AIAssistantSidebar.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/ActionButtons.tsx: -------------------------------------------------------------------------------- 1 | export const DISCORD_URL = 'https://discord.gg/gZmXmhbBdP'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/common/ConsentPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/ConsentPopup.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/DownloadButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/DownloadButton.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/ErrorSnackbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/ErrorSnackbar.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/GlobalDropZone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/GlobalDropZone.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/GoogleSheetsMetadata.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/GoogleSheetsMetadata.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/HelpDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/HelpDropdown.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/LanguageSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/LanguageSwitcher.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/MarkdownRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/MarkdownRenderer.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/RemoteDataImportPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/RemoteDataImportPanel.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/SEO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/SEO.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/SettingsPopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/SettingsPopover.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/SidebarFeedbackButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/SidebarFeedbackButton.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/SuccessSnackbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/SuccessSnackbar.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/import-modal/CustomURLPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/import-modal/CustomURLPanel.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/import-modal/GCSImportPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/import-modal/GCSImportPanel.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/import-modal/GoogleDrivePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/import-modal/GoogleDrivePanel.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/import-modal/GoogleSheetsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/import-modal/GoogleSheetsPanel.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/import-modal/GoogleSheetsPreviewCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/import-modal/GoogleSheetsPreviewCard.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/import-modal/GoogleSheetsPublishGuide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/import-modal/GoogleSheetsPublishGuide.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/import-modal/HuggingFacePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/import-modal/HuggingFacePanel.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/import-modal/ImportSuccessAnimation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/import-modal/ImportSuccessAnimation.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/import-modal/MotherDuckPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/import-modal/MotherDuckPanel.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/import-modal/PostgreSQLPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/import-modal/PostgreSQLPanel.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/import-modal/S3ImportPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/import-modal/S3ImportPanel.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/import-modal/motherduck/ConnectionStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/import-modal/motherduck/ConnectionStatus.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/import-modal/motherduck/TokenInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/common/import-modal/motherduck/TokenInput.tsx -------------------------------------------------------------------------------- /frontend/src/components/data-grid/CellContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/data-grid/CellContextMenu.tsx -------------------------------------------------------------------------------- /frontend/src/components/data-grid/DataPreviewGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/data-grid/DataPreviewGrid.tsx -------------------------------------------------------------------------------- /frontend/src/components/data-grid/DataPreviewPagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/data-grid/DataPreviewPagination.tsx -------------------------------------------------------------------------------- /frontend/src/components/data-grid/DemoVideoModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/data-grid/DemoVideoModal.tsx -------------------------------------------------------------------------------- /frontend/src/components/data-grid/DraggableQueryResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/data-grid/DraggableQueryResults.tsx -------------------------------------------------------------------------------- /frontend/src/components/data-grid/DropZonesOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/data-grid/DropZonesOverlay.tsx -------------------------------------------------------------------------------- /frontend/src/components/data-grid/EmptyDataState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/data-grid/EmptyDataState.tsx -------------------------------------------------------------------------------- /frontend/src/components/data-grid/FileTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/data-grid/FileTabs.tsx -------------------------------------------------------------------------------- /frontend/src/components/data-grid/UnifiedGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/data-grid/UnifiedGrid.tsx -------------------------------------------------------------------------------- /frontend/src/components/data-grid/column-actions/SimpleColumnActionPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/data-grid/column-actions/SimpleColumnActionPanel.tsx -------------------------------------------------------------------------------- /frontend/src/components/data-grid/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/data-grid/hooks/index.ts -------------------------------------------------------------------------------- /frontend/src/components/data-grid/hooks/useCellFormatting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/data-grid/hooks/useCellFormatting.ts -------------------------------------------------------------------------------- /frontend/src/components/data-grid/hooks/useCellInteraction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/data-grid/hooks/useCellInteraction.ts -------------------------------------------------------------------------------- /frontend/src/components/data-grid/hooks/useColumnSorting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/data-grid/hooks/useColumnSorting.ts -------------------------------------------------------------------------------- /frontend/src/components/data-grid/hooks/useFileUpload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/data-grid/hooks/useFileUpload.ts -------------------------------------------------------------------------------- /frontend/src/components/data-grid/hooks/useGridEditing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/data-grid/hooks/useGridEditing.ts -------------------------------------------------------------------------------- /frontend/src/components/data-grid/table-header/ColumnHeaderCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/data-grid/table-header/ColumnHeaderCell.tsx -------------------------------------------------------------------------------- /frontend/src/components/data-grid/table-header/MiniHistogram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/data-grid/table-header/MiniHistogram.tsx -------------------------------------------------------------------------------- /frontend/src/components/data-grid/table-header/TypeIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/data-grid/table-header/TypeIndicator.tsx -------------------------------------------------------------------------------- /frontend/src/components/demo/DemoWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/demo/DemoWizard.tsx -------------------------------------------------------------------------------- /frontend/src/components/icons/DuckDBIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/icons/DuckDBIcon.tsx -------------------------------------------------------------------------------- /frontend/src/components/icons/GoogleSheetsIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/icons/GoogleSheetsIcon.tsx -------------------------------------------------------------------------------- /frontend/src/components/layout/MainLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/layout/MainLayout.tsx -------------------------------------------------------------------------------- /frontend/src/components/layout/SettingsSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/layout/SettingsSidebar.tsx -------------------------------------------------------------------------------- /frontend/src/components/layout/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/layout/Sidebar.tsx -------------------------------------------------------------------------------- /frontend/src/components/layout/SidebarToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/layout/SidebarToggle.tsx -------------------------------------------------------------------------------- /frontend/src/components/layout/SplitViewContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/layout/SplitViewContainer.tsx -------------------------------------------------------------------------------- /frontend/src/components/navigation/TabNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/navigation/TabNavigation.tsx -------------------------------------------------------------------------------- /frontend/src/components/navigation/ViewModeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/navigation/ViewModeSelector.tsx -------------------------------------------------------------------------------- /frontend/src/components/settings/AISettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/settings/AISettings.tsx -------------------------------------------------------------------------------- /frontend/src/components/settings/AppearanceSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/settings/AppearanceSettings.tsx -------------------------------------------------------------------------------- /frontend/src/components/settings/SubscriptionSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/settings/SubscriptionSettings.tsx -------------------------------------------------------------------------------- /frontend/src/components/settings/WorkspaceSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/settings/WorkspaceSettings.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/DataPreviewTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/DataPreviewTab.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/NotebooksTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/NotebooksTab.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/QueryTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/QueryTab.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/ai/ApiKeyModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/ai/ApiKeyModal.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/ai/ContextPills.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/ai/ContextPills.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/ai/ErrorDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/ai/ErrorDisplay.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/ai/LocalModelManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/ai/LocalModelManager.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/ai/ModelSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/ai/ModelSelector.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/ai/OllamaModelManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/ai/OllamaModelManager.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/ai/SidebarPythonCodeCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/ai/SidebarPythonCodeCard.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/ai/SidebarSQLQueryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/ai/SidebarSQLQueryCard.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/ai/StatusIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/ai/StatusIndicator.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/ai/utils/aiResponseParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/ai/utils/aiResponseParser.ts -------------------------------------------------------------------------------- /frontend/src/components/tabs/ai/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/ai/utils/index.ts -------------------------------------------------------------------------------- /frontend/src/components/tabs/ai/utils/smartParsing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/ai/utils/smartParsing.ts -------------------------------------------------------------------------------- /frontend/src/components/tabs/ai/utils/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/ai/utils/validation.ts -------------------------------------------------------------------------------- /frontend/src/components/tabs/notebooks/CellDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/notebooks/CellDivider.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/notebooks/MonacoErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/notebooks/MonacoErrorBoundary.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/notebooks/NotebookErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/notebooks/NotebookErrorBoundary.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/notebooks/NotebooksWorkspace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/notebooks/NotebooksWorkspace.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/notebooks/PackageManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/notebooks/PackageManager.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/notebooks/PythonCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/notebooks/PythonCell.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/notebooks/ScriptHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/notebooks/ScriptHistory.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/notebooks/ScriptTemplates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/notebooks/ScriptTemplates.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/notebooks/VariableInspector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/notebooks/VariableInspector.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/InspectorPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/InspectorPanel.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/QuickOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/QuickOverview.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/components/ColumnExportButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/components/ColumnExportButton.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/components/ColumnRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/components/ColumnRow.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/components/ColumnSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/components/ColumnSearch.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/components/EmptyStates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/components/EmptyStates.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/components/ExportPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/components/ExportPanel.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/components/LoadingStates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/components/LoadingStates.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/components/Overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/components/Overview.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/components/ProblemsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/components/ProblemsView.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/components/QuickActionsBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/components/QuickActionsBar.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/components/RowDetailsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/components/RowDetailsModal.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/components/ViewSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/components/ViewSwitcher.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/components/charts/ChartContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/components/charts/ChartContainer.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/components/charts/MiniChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/components/charts/MiniChart.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/components/charts/NivoCategoricalChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/components/charts/NivoCategoricalChart.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/components/charts/NivoHistogram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/components/charts/NivoHistogram.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/components/charts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/components/charts/index.ts -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/hooks/useAutoAnalysis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/hooks/useAutoAnalysis.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/hooks/useColumnFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/hooks/useColumnFilter.ts -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/utils/chartExportUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/utils/chartExportUtils.ts -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/utils/dataExportUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/utils/dataExportUtils.ts -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/utils/exportUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/utils/exportUtils.ts -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/utils/htmlReportUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/utils/htmlReportUtils.ts -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/utils/index.ts -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/utils/problemExportUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/utils/problemExportUtils.ts -------------------------------------------------------------------------------- /frontend/src/components/tabs/preview/inspector/utils/reportExportUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/preview/inspector/utils/reportExportUtils.ts -------------------------------------------------------------------------------- /frontend/src/components/tabs/query/DraftBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/query/DraftBadge.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/query/MonacoEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/query/MonacoEditor.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/query/QueryHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/query/QueryHistory.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/query/QueryWorkspace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/query/QueryWorkspace.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/query/SchemaBrowser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/query/SchemaBrowser.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/query/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/query/constants.ts -------------------------------------------------------------------------------- /frontend/src/components/tabs/query/query-results/QueryResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/query/query-results/QueryResults.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/query/query-results/QueryResultsEmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/query/query-results/QueryResultsEmptyState.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/query/query-results/QueryResultsHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/query/query-results/QueryResultsHeader.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/query/query-results/QueryResultsPagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/query/query-results/QueryResultsPagination.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/query/query-results/QueryResultsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/query/query-results/QueryResultsTable.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/query/query-results/SaveAsTableModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/query/query-results/SaveAsTableModal.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/query/query-results/TableCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/query/query-results/TableCell.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/query/query-results/useQueryColumnFormatting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/query/query-results/useQueryColumnFormatting.ts -------------------------------------------------------------------------------- /frontend/src/components/tabs/query/useWorkspaceUIState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/tabs/query/useWorkspaceUIState.ts -------------------------------------------------------------------------------- /frontend/src/components/ui/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/ui/Button.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/GlareHover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/ui/GlareHover.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/LoadingDots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/ui/LoadingDots.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/NotebookEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/ui/NotebookEditor.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/SaveDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/ui/SaveDialog.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/ui/Tooltip.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/UnsavedChangesDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/ui/UnsavedChangesDialog.tsx -------------------------------------------------------------------------------- /frontend/src/components/workspace/FolderTreeView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/workspace/FolderTreeView.tsx -------------------------------------------------------------------------------- /frontend/src/components/workspace/SidebarToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/components/workspace/SidebarToolbar.tsx -------------------------------------------------------------------------------- /frontend/src/constants/public_datasets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/constants/public_datasets.ts -------------------------------------------------------------------------------- /frontend/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/global.d.ts -------------------------------------------------------------------------------- /frontend/src/hooks/ai/useAIOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/ai/useAIOperations.ts -------------------------------------------------------------------------------- /frontend/src/hooks/ai/useAIQueryExecution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/ai/useAIQueryExecution.ts -------------------------------------------------------------------------------- /frontend/src/hooks/ai/useStreamingStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/ai/useStreamingStatus.ts -------------------------------------------------------------------------------- /frontend/src/hooks/ai/useTokenUsage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/ai/useTokenUsage.ts -------------------------------------------------------------------------------- /frontend/src/hooks/auth/useAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/auth/useAuth.ts -------------------------------------------------------------------------------- /frontend/src/hooks/auth/useRequireAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/auth/useRequireAuth.ts -------------------------------------------------------------------------------- /frontend/src/hooks/notebooks/useFileAwareNotebook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/notebooks/useFileAwareNotebook.ts -------------------------------------------------------------------------------- /frontend/src/hooks/notebooks/useNotebookManagement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/notebooks/useNotebookManagement.ts -------------------------------------------------------------------------------- /frontend/src/hooks/notebooks/useNotebooksActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/notebooks/useNotebooksActions.ts -------------------------------------------------------------------------------- /frontend/src/hooks/notebooks/usePanelNavigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/notebooks/usePanelNavigation.ts -------------------------------------------------------------------------------- /frontend/src/hooks/query/useQueryExecution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/query/useQueryExecution.ts -------------------------------------------------------------------------------- /frontend/src/hooks/query/useQueryHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/query/useQueryHistory.ts -------------------------------------------------------------------------------- /frontend/src/hooks/query/useQueryInitialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/query/useQueryInitialization.ts -------------------------------------------------------------------------------- /frontend/src/hooks/query/useQueryOptimization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/query/useQueryOptimization.ts -------------------------------------------------------------------------------- /frontend/src/hooks/query/useQueryResultsImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/query/useQueryResultsImport.ts -------------------------------------------------------------------------------- /frontend/src/hooks/query/useSchemaInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/query/useSchemaInfo.ts -------------------------------------------------------------------------------- /frontend/src/hooks/remote/custom/useCustomURLImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/remote/custom/useCustomURLImport.ts -------------------------------------------------------------------------------- /frontend/src/hooks/remote/drive/useGoogleDriveImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/remote/drive/useGoogleDriveImport.ts -------------------------------------------------------------------------------- /frontend/src/hooks/remote/gcs/useGCSImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/remote/gcs/useGCSImport.ts -------------------------------------------------------------------------------- /frontend/src/hooks/remote/huggingface/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/remote/huggingface/api.ts -------------------------------------------------------------------------------- /frontend/src/hooks/remote/huggingface/duckdb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/remote/huggingface/duckdb.ts -------------------------------------------------------------------------------- /frontend/src/hooks/remote/huggingface/importStrategies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/remote/huggingface/importStrategies.ts -------------------------------------------------------------------------------- /frontend/src/hooks/remote/huggingface/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/remote/huggingface/network.ts -------------------------------------------------------------------------------- /frontend/src/hooks/remote/huggingface/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/remote/huggingface/types.ts -------------------------------------------------------------------------------- /frontend/src/hooks/remote/huggingface/useHuggingFaceImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/remote/huggingface/useHuggingFaceImport.ts -------------------------------------------------------------------------------- /frontend/src/hooks/remote/huggingface/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/remote/huggingface/utils.ts -------------------------------------------------------------------------------- /frontend/src/hooks/remote/interfaces/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/remote/interfaces/types.ts -------------------------------------------------------------------------------- /frontend/src/hooks/remote/motherduck/useMotherDuck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/remote/motherduck/useMotherDuck.ts -------------------------------------------------------------------------------- /frontend/src/hooks/remote/s3/useS3Import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/remote/s3/useS3Import.ts -------------------------------------------------------------------------------- /frontend/src/hooks/remote/sheets/useGoogleSheetsImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/remote/sheets/useGoogleSheetsImport.ts -------------------------------------------------------------------------------- /frontend/src/hooks/remote/url/useUrlDatasetImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/remote/url/useUrlDatasetImport.ts -------------------------------------------------------------------------------- /frontend/src/hooks/remote/usePublicDatasets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/remote/usePublicDatasets.ts -------------------------------------------------------------------------------- /frontend/src/hooks/remote/useRemoteDatasetImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/remote/useRemoteDatasetImport.ts -------------------------------------------------------------------------------- /frontend/src/hooks/stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/stream/README.md -------------------------------------------------------------------------------- /frontend/src/hooks/stream/useDataParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/stream/useDataParser.ts -------------------------------------------------------------------------------- /frontend/src/hooks/stream/useStreamingCSVParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/stream/useStreamingCSVParser.ts -------------------------------------------------------------------------------- /frontend/src/hooks/stream/useStreamingJSONParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/stream/useStreamingJSONParser.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useAnalytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/useAnalytics.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useColumnStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/useColumnStats.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useCredits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/useCredits.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useDataPreview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/useDataPreview.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useDemoFileDrops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/useDemoFileDrops.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useDirectFileImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/useDirectFileImport.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useDraggableQueryResults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/useDraggableQueryResults.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useFileAccess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/useFileAccess.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useFileImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/useFileImport.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useHomePageLogic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/useHomePageLogic.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useIframeDetection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/useIframeDetection.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useKeyboardShortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/useKeyboardShortcuts.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useLazyFileLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/useLazyFileLoader.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useMediaQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/useMediaQuery.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useNotifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/useNotifications.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/usePopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/usePopover.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/usePostHogIdentification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/usePostHogIdentification.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useRemoteFileImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/useRemoteFileImport.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useResizable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/useResizable.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useResizablePanels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/useResizablePanels.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useTabTracking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/useTabTracking.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useUrlParameterHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/useUrlParameterHandler.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useWorkspaceState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/hooks/useWorkspaceState.ts -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/lib/ai/aiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/ai/aiService.ts -------------------------------------------------------------------------------- /frontend/src/lib/ai/corsProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/ai/corsProxy.ts -------------------------------------------------------------------------------- /frontend/src/lib/ai/modelManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/ai/modelManager.ts -------------------------------------------------------------------------------- /frontend/src/lib/ai/prompts/sqlPrompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/ai/prompts/sqlPrompts.ts -------------------------------------------------------------------------------- /frontend/src/lib/ai/providers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/ai/providers/README.md -------------------------------------------------------------------------------- /frontend/src/lib/ai/providers/anthropic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/ai/providers/anthropic.ts -------------------------------------------------------------------------------- /frontend/src/lib/ai/providers/datakit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/ai/providers/datakit.ts -------------------------------------------------------------------------------- /frontend/src/lib/ai/providers/groq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/ai/providers/groq.ts -------------------------------------------------------------------------------- /frontend/src/lib/ai/providers/ollama.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/ai/providers/ollama.ts -------------------------------------------------------------------------------- /frontend/src/lib/ai/providers/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/ai/providers/openai.ts -------------------------------------------------------------------------------- /frontend/src/lib/ai/providers/safeApiProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/ai/providers/safeApiProvider.ts -------------------------------------------------------------------------------- /frontend/src/lib/ai/providers/webllm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/ai/providers/webllm.ts -------------------------------------------------------------------------------- /frontend/src/lib/ai/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/ai/types.ts -------------------------------------------------------------------------------- /frontend/src/lib/api/aiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/api/aiService.ts -------------------------------------------------------------------------------- /frontend/src/lib/api/apiClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/api/apiClient.ts -------------------------------------------------------------------------------- /frontend/src/lib/api/authService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/api/authService.ts -------------------------------------------------------------------------------- /frontend/src/lib/api/debugHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/api/debugHelper.ts -------------------------------------------------------------------------------- /frontend/src/lib/api/postgresService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/api/postgresService.ts -------------------------------------------------------------------------------- /frontend/src/lib/api/userService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/api/userService.ts -------------------------------------------------------------------------------- /frontend/src/lib/api/workspaceService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/api/workspaceService.ts -------------------------------------------------------------------------------- /frontend/src/lib/columnActions/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/columnActions/actions.ts -------------------------------------------------------------------------------- /frontend/src/lib/columnActions/columnActionService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/columnActions/columnActionService.ts -------------------------------------------------------------------------------- /frontend/src/lib/data/dataProcessingUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/data/dataProcessingUtil.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/config.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/ingestion/analyzeTextFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/ingestion/analyzeTextFile.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/ingestion/convertDuckDBColumnTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/ingestion/convertDuckDBColumnTypes.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/ingestion/csv/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/ingestion/csv/utils.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/ingestion/json/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/ingestion/json/utils.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/ingestion/tables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/ingestion/tables.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/init.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/inspector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/inspector/README.md -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/inspector/analysis/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/inspector/analysis/basic.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/inspector/analysis/categorical.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/inspector/analysis/categorical.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/inspector/analysis/numeric.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/inspector/analysis/numeric.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/inspector/analysis/quality.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/inspector/analysis/quality.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/inspector/analysis/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/inspector/analysis/text.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/inspector/inspector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/inspector/inspector.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/inspector/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/inspector/types.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/inspector/utils/bigint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/inspector/utils/bigint.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/inspector/utils/filtering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/inspector/utils/filtering.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/inspector/utils/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/inspector/utils/validation.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/query.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/query/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/query/pagination.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/sqlSanitizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/sqlSanitizer.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/transformations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/transformations.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/types.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/utils.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/utils/passwordValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/utils/passwordValidator.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/utils/queryRouter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/utils/queryRouter.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/duckdb/utils/queryRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/duckdb/utils/queryRouter.ts -------------------------------------------------------------------------------- /frontend/src/lib/excelConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/excelConverter.ts -------------------------------------------------------------------------------- /frontend/src/lib/google/sheetsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/google/sheetsUtils.ts -------------------------------------------------------------------------------- /frontend/src/lib/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/i18n.ts -------------------------------------------------------------------------------- /frontend/src/lib/python/executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/python/executor.ts -------------------------------------------------------------------------------- /frontend/src/lib/python/fileTemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/python/fileTemplates.ts -------------------------------------------------------------------------------- /frontend/src/lib/python/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/python/init.ts -------------------------------------------------------------------------------- /frontend/src/lib/python/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/python/templates.ts -------------------------------------------------------------------------------- /frontend/src/lib/python/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/python/types.ts -------------------------------------------------------------------------------- /frontend/src/lib/python/welcomeCells.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/python/welcomeCells.ts -------------------------------------------------------------------------------- /frontend/src/lib/streamReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/streamReader.ts -------------------------------------------------------------------------------- /frontend/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/lib/utils.ts -------------------------------------------------------------------------------- /frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/main.tsx -------------------------------------------------------------------------------- /frontend/src/pages/DatasetImport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/pages/DatasetImport.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/pages/Home.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/pages/Info.tsx -------------------------------------------------------------------------------- /frontend/src/pages/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/pages/NotFound.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Privacy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/pages/Privacy.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/pages/Settings.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Viewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/pages/Viewer.tsx -------------------------------------------------------------------------------- /frontend/src/services/creditsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/services/creditsService.ts -------------------------------------------------------------------------------- /frontend/src/store/aiStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/store/aiStore.ts -------------------------------------------------------------------------------- /frontend/src/store/appStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/store/appStore.ts -------------------------------------------------------------------------------- /frontend/src/store/authStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/store/authStore.ts -------------------------------------------------------------------------------- /frontend/src/store/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/store/constants.ts -------------------------------------------------------------------------------- /frontend/src/store/dataPreviewStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/store/dataPreviewStore.ts -------------------------------------------------------------------------------- /frontend/src/store/duckDBStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/store/duckDBStore.ts -------------------------------------------------------------------------------- /frontend/src/store/folderStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/store/folderStore.ts -------------------------------------------------------------------------------- /frontend/src/store/inspectorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/store/inspectorStore.ts -------------------------------------------------------------------------------- /frontend/src/store/postgresStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/store/postgresStore.ts -------------------------------------------------------------------------------- /frontend/src/store/pythonStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/store/pythonStore.ts -------------------------------------------------------------------------------- /frontend/src/store/selectors/appSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/store/selectors/appSelectors.ts -------------------------------------------------------------------------------- /frontend/src/store/selectors/duckdbSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/store/selectors/duckdbSelectors.ts -------------------------------------------------------------------------------- /frontend/src/store/workspaceStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/store/workspaceStore.ts -------------------------------------------------------------------------------- /frontend/src/types/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/types/ai.ts -------------------------------------------------------------------------------- /frontend/src/types/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/types/auth.ts -------------------------------------------------------------------------------- /frontend/src/types/columnActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/types/columnActions.ts -------------------------------------------------------------------------------- /frontend/src/types/csv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/types/csv.ts -------------------------------------------------------------------------------- /frontend/src/types/folder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/types/folder.ts -------------------------------------------------------------------------------- /frontend/src/types/grid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/types/grid.ts -------------------------------------------------------------------------------- /frontend/src/types/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/types/json.ts -------------------------------------------------------------------------------- /frontend/src/types/multiFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/types/multiFile.ts -------------------------------------------------------------------------------- /frontend/src/types/postgres.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/types/postgres.ts -------------------------------------------------------------------------------- /frontend/src/types/remoteImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/types/remoteImport.ts -------------------------------------------------------------------------------- /frontend/src/types/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/types/workspace.ts -------------------------------------------------------------------------------- /frontend/src/utils/datasetUrlHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/utils/datasetUrlHandler.ts -------------------------------------------------------------------------------- /frontend/src/utils/exportUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/utils/exportUtils.ts -------------------------------------------------------------------------------- /frontend/src/utils/notebookExport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/utils/notebookExport.ts -------------------------------------------------------------------------------- /frontend/src/utils/queryExport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/utils/queryExport.ts -------------------------------------------------------------------------------- /frontend/src/utils/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/src/utils/theme.ts -------------------------------------------------------------------------------- /frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/tsconfig.app.json -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/vite.config.ts -------------------------------------------------------------------------------- /frontend/wasm-src/data-processing/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/wasm-src/data-processing/Cargo.toml -------------------------------------------------------------------------------- /frontend/wasm-src/data-processing/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/wasm-src/data-processing/build.sh -------------------------------------------------------------------------------- /frontend/wasm-src/data-processing/src/csv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/wasm-src/data-processing/src/csv.rs -------------------------------------------------------------------------------- /frontend/wasm-src/data-processing/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/frontend/wasm-src/data-processing/src/lib.rs -------------------------------------------------------------------------------- /idea/DATAKIT_FILE_SHARING_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datakitpage/Datakit/HEAD/idea/DATAKIT_FILE_SHARING_PLAN.md --------------------------------------------------------------------------------