- Add MIT License - Create frontend with Vue 3 + Vite + Pinia - PromptInput component for project description - DebateThread component for displaying AI discussions - Debate store for state management - Create backend with Express + WebSocket + SQLite - REST API for debate management - Database schema for debates and responses - Orchestrator service for AI agent coordination - Update .gitignore for environment files and dependencies
39 lines
402 B
Plaintext
39 lines
402 B
Plaintext
# Claude Code
|
|
.claude/
|
|
|
|
# Design journal with sensitive information
|
|
design-journal.md
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
frontend/node_modules/
|
|
backend/node_modules/
|
|
|
|
# Environment variables
|
|
.env
|
|
frontend/.env
|
|
backend/.env
|
|
|
|
# Database files
|
|
backend/data/
|
|
*.db
|
|
*.sqlite
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Build outputs
|
|
frontend/dist/
|
|
frontend/.vite/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|