gitextract_46xnnl1r/ ├── .editorconfig ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .npmrc ├── .vscode/ │ ├── extensions.json │ └── settings.json ├── Dockerfile ├── LICENSE.md ├── README.md ├── docker-compose.yaml ├── index.html ├── jsconfig.json ├── package.json ├── postcss.config.js ├── quasar.config.js ├── src/ │ ├── App.vue │ ├── assets/ │ │ ├── Sample-Spreadsheet-10-rows.csv │ │ └── customers-100.csv │ ├── boot/ │ │ ├── .gitkeep │ │ ├── bus.js │ │ └── duckdb.js │ ├── components/ │ │ └── EssentialLink.vue │ ├── css/ │ │ └── app.css │ ├── layouts/ │ │ └── MainLayout.vue │ ├── pages/ │ │ ├── ErrorNotFound.vue │ │ ├── IndexPage.vue │ │ ├── NewIndexPage.vue │ │ └── ace-config.ts │ └── router/ │ ├── index.js │ └── routes.js └── tailwind.config.js