a27b405392
- Update CreateUserDialog labels to show 'Username (Access Key)' and 'Password (Secret Key)' - Add helper text explaining these are MinIO credentials - Enhanced success display to show credentials with proper MinIO terminology - Add MinIO CLI connection examples in credential displays - Fix confusion about where to get access key and secret key This addresses user feedback about unclear credential terminology and aligns with MinIO documentation where username = Access Key and password = Secret Key. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
129 lines
1.5 KiB
Plaintext
129 lines
1.5 KiB
Plaintext
# Dependencies
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Production builds
|
|
backend/dist/
|
|
frontend/build/
|
|
frontend/dist/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
lerna-debug.log*
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE files
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Test coverage
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Temporary files
|
|
temp/
|
|
tmp/
|
|
*.tmp
|
|
backend/temp/*
|
|
!backend/temp/.gitkeep
|
|
|
|
# MinIO configuration
|
|
.mc/
|
|
|
|
# SSL certificates (for local development)
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
|
|
# Docker volumes
|
|
docker/volumes/
|
|
|
|
# PM2
|
|
.pm2/
|
|
|
|
# Backup files
|
|
*.backup
|
|
*.bak
|
|
|
|
# Cache directories
|
|
.cache/
|
|
.parcel-cache/
|
|
|
|
# Generated files
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
|
|
# Next.js (if used later)
|
|
.next/
|
|
out/
|
|
|
|
# Gatsby (if used later)
|
|
.cache/
|
|
# public/ - commented out as we need frontend/public for React
|
|
|
|
# Mac specific
|
|
.AppleDouble
|
|
.LSOverride
|
|
|
|
# Linux specific
|
|
*~
|
|
|
|
# Windows specific
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
|
|
# Redis dump
|
|
dump.rdb
|
|
|
|
|
|
|
|
|
|
# Claude Flow generated files
|
|
.claude/settings.local.json
|
|
.mcp.json
|
|
claude-flow.config.json
|
|
.swarm/
|
|
.hive-mind/
|
|
memory/claude-flow-data.json
|
|
memory/sessions/*
|
|
!memory/sessions/README.md
|
|
memory/agents/*
|
|
!memory/agents/README.md
|
|
coordination/memory_bank/*
|
|
coordination/subtasks/*
|
|
coordination/orchestration/*
|
|
*.db
|
|
*.db-journal
|
|
*.db-wal
|
|
*.sqlite
|
|
*.sqlite-journal
|
|
*.sqlite-wal
|
|
claude-flow
|
|
claude-flow.bat
|
|
claude-flow.ps1
|
|
hive-mind-prompt-*.txt
|