├── .editorconfig ├── .env.example ├── .eslintignore ├── .github ├── FUNDING.yml ├── copilot-instructions.md └── workflows │ └── build.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.yaml ├── .svelterc ├── LICENSE ├── README.md ├── dev-app-update.yml ├── docs ├── RELEASE.md └── img │ ├── groceries_screenshot.png │ ├── mac-codesigning-install.png │ └── search-result.png ├── e2e ├── features │ ├── api-key-status.feature │ ├── initial-application-view.feature │ ├── search-page.feature │ ├── settings-page.feature │ └── upload-process.feature ├── step-definitions │ ├── api-key-status.steps.ts │ ├── common.steps.ts │ ├── initial_application_view.steps.ts │ ├── search_page.steps.ts │ ├── settings_page.steps.ts │ └── upload_process.steps.ts └── test-storage │ ├── complaints-2025-09-03_09_25.csv │ ├── constellation-10q.csv │ ├── constellation-test.csv │ └── newline-test.csv ├── electron-builder.yml ├── electron.vite.config.ts ├── eslint.config.cjs ├── package.json ├── resources ├── icon.icns ├── icon.png └── weaviate │ └── LICENSE ├── scripts ├── ensureWeaviateIsDownloaded.mjs └── notarize.mjs ├── src ├── main │ ├── Sqlite3MetadataManager.ts │ ├── index.ts │ └── weaviateService.ts ├── preload │ ├── index.d.ts │ └── index.ts └── renderer │ ├── index.html │ └── src │ ├── electronApi.ts │ ├── global.d.ts │ ├── main.css │ └── main.ts ├── svelte.config.mjs ├── tsconfig.json ├── tsconfig.node.json └── wdio.conf.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | out 4 | .gitignore 5 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 24 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /.svelterc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/.svelterc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/README.md -------------------------------------------------------------------------------- /dev-app-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/dev-app-update.yml -------------------------------------------------------------------------------- /docs/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/docs/RELEASE.md -------------------------------------------------------------------------------- /docs/img/groceries_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/docs/img/groceries_screenshot.png -------------------------------------------------------------------------------- /docs/img/mac-codesigning-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/docs/img/mac-codesigning-install.png -------------------------------------------------------------------------------- /docs/img/search-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/docs/img/search-result.png -------------------------------------------------------------------------------- /e2e/features/api-key-status.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/e2e/features/api-key-status.feature -------------------------------------------------------------------------------- /e2e/features/initial-application-view.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/e2e/features/initial-application-view.feature -------------------------------------------------------------------------------- /e2e/features/search-page.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/e2e/features/search-page.feature -------------------------------------------------------------------------------- /e2e/features/settings-page.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/e2e/features/settings-page.feature -------------------------------------------------------------------------------- /e2e/features/upload-process.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/e2e/features/upload-process.feature -------------------------------------------------------------------------------- /e2e/step-definitions/api-key-status.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/e2e/step-definitions/api-key-status.steps.ts -------------------------------------------------------------------------------- /e2e/step-definitions/common.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/e2e/step-definitions/common.steps.ts -------------------------------------------------------------------------------- /e2e/step-definitions/initial_application_view.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/e2e/step-definitions/initial_application_view.steps.ts -------------------------------------------------------------------------------- /e2e/step-definitions/search_page.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/e2e/step-definitions/search_page.steps.ts -------------------------------------------------------------------------------- /e2e/step-definitions/settings_page.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/e2e/step-definitions/settings_page.steps.ts -------------------------------------------------------------------------------- /e2e/step-definitions/upload_process.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/e2e/step-definitions/upload_process.steps.ts -------------------------------------------------------------------------------- /e2e/test-storage/complaints-2025-09-03_09_25.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/e2e/test-storage/complaints-2025-09-03_09_25.csv -------------------------------------------------------------------------------- /e2e/test-storage/constellation-10q.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/e2e/test-storage/constellation-10q.csv -------------------------------------------------------------------------------- /e2e/test-storage/constellation-test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/e2e/test-storage/constellation-test.csv -------------------------------------------------------------------------------- /e2e/test-storage/newline-test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/e2e/test-storage/newline-test.csv -------------------------------------------------------------------------------- /electron-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/electron-builder.yml -------------------------------------------------------------------------------- /electron.vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/electron.vite.config.ts -------------------------------------------------------------------------------- /eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/eslint.config.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/package.json -------------------------------------------------------------------------------- /resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/resources/icon.icns -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/weaviate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/resources/weaviate/LICENSE -------------------------------------------------------------------------------- /scripts/ensureWeaviateIsDownloaded.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/scripts/ensureWeaviateIsDownloaded.mjs -------------------------------------------------------------------------------- /scripts/notarize.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/scripts/notarize.mjs -------------------------------------------------------------------------------- /src/main/Sqlite3MetadataManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/src/main/Sqlite3MetadataManager.ts -------------------------------------------------------------------------------- /src/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/src/main/index.ts -------------------------------------------------------------------------------- /src/main/weaviateService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/src/main/weaviateService.ts -------------------------------------------------------------------------------- /src/preload/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/src/preload/index.d.ts -------------------------------------------------------------------------------- /src/preload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/src/preload/index.ts -------------------------------------------------------------------------------- /src/renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/src/renderer/index.html -------------------------------------------------------------------------------- /src/renderer/src/electronApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/src/renderer/src/electronApi.ts -------------------------------------------------------------------------------- /src/renderer/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/src/renderer/src/global.d.ts -------------------------------------------------------------------------------- /src/renderer/src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/src/renderer/src/main.css -------------------------------------------------------------------------------- /src/renderer/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/src/renderer/src/main.ts -------------------------------------------------------------------------------- /svelte.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/svelte.config.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /wdio.conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremybmerrill/meaningfully/HEAD/wdio.conf.ts --------------------------------------------------------------------------------