Files
trading_bot_v4/.gitignore
root c80a62ed26 security: .env und .env.* aus Git-Tracking entfernen
.env enthielt Private Keys und API Secrets im Klartext.
.gitignore aktualisiert: alle .env-Dateien ignorieren, nur .env.example behalten.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-30 14:46:44 +01:00

53 lines
424 B
Plaintext

# Dependencies
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Next.js
.next/
out/
build/
# Environment variables
.env
.env.*
!.env.example
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Logs
logs/
*.log
# Docker
.dockerignore
# Temporary files
tmp/
temp/
*.tmp
# Build artifacts
dist/
.backtester/
# Coverage reports
coverage/
# Python cache
__pycache__/
*.pyc
*.pyo
*.pyd
.Python