27 lines
363 B
Plaintext
27 lines
363 B
Plaintext
# Ignore all files under configs/ except files ending with .sample
|
|
/configs/*
|
|
!/configs/*.sample
|
|
|
|
# Local env files and common secrets
|
|
.env
|
|
.env.local
|
|
*.key
|
|
*.pem
|
|
|
|
# Build outputs
|
|
/bin/
|
|
/*.exe
|
|
/*.exe~
|
|
**/__debug_bin*
|
|
|
|
# Runtime artifacts
|
|
/workspace/agent_runtime/
|
|
/data/*.db
|
|
/data/*.db-*
|
|
|
|
# VS Code debug artifacts
|
|
/.vscode/*.log
|
|
|
|
# Editor temp files
|
|
*~
|
|
.DS_Store |