- Move API credentials from script.js to config.js - Add config.js to .gitignore to prevent credential exposure - Create config.example.js as template for new installations - Add validation check for missing configuration - Update index.html to load config.js before script.js This change ensures API keys are never committed to the repository while maintaining full functionality of the dashboard. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
25 lines
230 B
Plaintext
25 lines
230 B
Plaintext
# API Configuration (contains sensitive API key)
|
|
config.js
|
|
|
|
# Test files
|
|
schema-test.html
|
|
|
|
# System files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.bak
|