first commit

This commit is contained in:
2025-08-22 14:21:03 +08:00
commit bf6f910db1
2 changed files with 40 additions and 0 deletions

32
.gitignore vendored Normal file
View File

@@ -0,0 +1,32 @@
# Node
node_modules/
npm-debug.log*
package-lock.json
yarn.lock
pnpm-lock.yaml
# Build outputs
frontend/dist/
backend/dist/
# Env
.env
.env.local
.env.*.local
# IDEs
.vscode/
.idea/
.DS_Store
# Logs
logs
*.log
# Vite
node_modules/.vite
# Misc
coverage/
*.sqlite
*.db

8
README.md Normal file
View File

@@ -0,0 +1,8 @@
# Multi-LLM Chat
This repository contains a Vue 3 + Vite frontend and a Node.js + Express backend for a multi-LLM chat application.
Development
- frontend: cd frontend && npm install && npm run dev
- backend: cd backend && npm install && npm run dev