- Updated ChatHeader and ChatMessage components to support song selection and display. - Enhanced useContentPanel to handle both film and song content, allowing for richer interactions. - Improved FilmCard and added SongCard components for better media representation. - Refactored environment variables for better configuration management. - Updated .gitignore to include development chat history. Made-with: Cursor
41 lines
367 B
Plaintext
41 lines
367 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnpm-store/
|
|
|
|
# Build output
|
|
dist/
|
|
*.tsbuildinfo
|
|
|
|
# Turborepo
|
|
.turbo/
|
|
|
|
# Environment (secrets)
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Tauri
|
|
packages/app/src-tauri/target/
|
|
|
|
# IDE
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Dev chat history
|
|
.dev/
|
|
|
|
# Debug
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|
|
|
|
# Test coverage
|
|
coverage/
|
|
|
|
# Storybook
|
|
storybook-static/
|