- Enhanced SQL queries in `session.go` and `share.go` for clarity and consistency. - Updated comments for better understanding and maintenance. - Ensured consistent error handling and return statements across various methods.
37 lines
529 B
Plaintext
37 lines
529 B
Plaintext
# Environment variables (local overrides only)
|
|
# .env files are committed (contain production URLs, not secrets)
|
|
# .env.local files are git-ignored (contain local overrides)
|
|
.env.local
|
|
.env.*.local
|
|
backend/.env.local
|
|
frontend/.env.local
|
|
.env
|
|
|
|
# AI assistant instructions (keep private)
|
|
CLAUDE.md
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# OS-specific files
|
|
Thumbs.db
|
|
*.log
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
|
|
# Build artifacts
|
|
dist/
|
|
dist-ssr/
|
|
build/
|
|
*.local
|
|
|
|
# Docker volumes and data
|
|
postgres_data/
|
|
|
|
.claude/ |