All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
- Add appsettings.json and appsettings.*.json to .gitignore - Remove all appsettings.json files from git tracking - Prevents accidental commit of API keys and configuration secrets Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
34 lines
300 B
Text
34 lines
300 B
Text
# Dependencies
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
*.log
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Backend
|
|
bin/
|
|
obj/
|
|
*.user
|
|
*.suo
|
|
*.cache
|
|
|
|
# Configuration files (contain secrets)
|
|
appsettings.json
|
|
appsettings.*.json
|
|
|
|
# Frontend
|
|
.coverage
|