App no longer crashes on startup when appsettings.json is absent (e.g. fresh clone). Configuration is loaded from appsettings.json if present, then overridden by appsettings.local.json if that exists. Both files are gitignored to keep secrets out of the repo. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
18 lines
210 B
Plaintext
18 lines
210 B
Plaintext
# Build outputs
|
|
bin/
|
|
obj/
|
|
*.user
|
|
*.suo
|
|
.vs/
|
|
|
|
# Config with secrets — never commit
|
|
EbayListingTool/appsettings.json
|
|
EbayListingTool/appsettings.local.json
|
|
|
|
# Rider / JetBrains
|
|
.idea/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|