- ConfigMigrator.RunFromJson: importiert Accounts, Copytrading-Settings (Limit-Felder aus dem Alt-Account-Dokument) und Master-Trader aus PolyTraderDB.accounts.json / .trackers.json nach MySQL. Idempotent. - Robuste JSON-Helfer (mongoexport: Dezimale als Strings, null moeglich). - CLI: PolyTrader.App --migrate-json [ordner=MongoDB]. - .gitignore: MongoDB/ (Exporte enthalten Secrets) ausgeschlossen. - Ergebnis: 3 Accounts, 3 Settings, 32 Master-Trader in MySQL. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
42 lines
972 B
Plaintext
42 lines
972 B
Plaintext
# ── Build-Artefakte ──────────────────────────────
|
||
[Bb]in/
|
||
[Oo]bj/
|
||
[Dd]ebug/
|
||
[Rr]elease/
|
||
*.dll
|
||
*.exe
|
||
*.pdb
|
||
|
||
# ── Visual Studio / IDE ──────────────────────────
|
||
.vs/
|
||
.claude/settings.local.json
|
||
*.user
|
||
*.suo
|
||
*.userosscache
|
||
*.sln.docstates
|
||
*.code-workspace
|
||
|
||
# ── Lokale Daten & Secrets (NICHT versionieren!) ─
|
||
data.db
|
||
*.db
|
||
*.db-shm
|
||
*.db-wal
|
||
server_settings.xml
|
||
appsettings.*.json
|
||
!appsettings.json
|
||
|
||
# Mongo-Exporte (enthalten Secrets: PrivateKey, ApiSecret) – niemals committen
|
||
MongoDB/
|
||
|
||
# ── Logs & temporäre Dateien ─────────────────────
|
||
*.log
|
||
*.tmp
|
||
|
||
# ── Agent-Arbeitsbereich: Brain / Chatverlauf ────
|
||
agentspace/antigravity/
|
||
|
||
# ── Backups ──────────────────────────────────────
|
||
*.bak
|
||
*.bak[0-9]
|
||
*.bak_*
|