Remove all client-side state management and data caching as the application no longer needs to manage data analysis features. Changes: - Remove Pinia store system (app/stores/ directory) - metadata.ts: Store for table metadata - tableDataFactory.ts: Factory for creating table data stores - README.md: Comprehensive store documentation - Remove IndexedDB storage utility (app/utils/storage.ts) - Remove Pinia dependencies from package.json - @pinia/nuxt - pinia - Remove Pinia module from nuxt.config.ts - Remove vendor-pinia chunk configuration - Remove server services (server/services/ directory) - table-service.ts: Supabase-dependent table operations - query-parser.ts: Query parsing utilities - query-runner.ts: Query execution utilities The application now operates as a stateless authentication portal without client-side data caching or state management.
Nuxt Minimal Starter
Look at the Nuxt documentation to learn more.
Setup
Make sure to install dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
Development Server
Start the development server on http://localhost:3000:
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run dev
Production
Build the application for production:
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run build
Locally preview production build:
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run preview
Check out the deployment documentation for more information.