61 lines
683 B
Plaintext
61 lines
683 B
Plaintext
|
|
# Git
|
||
|
|
.git
|
||
|
|
.gitignore
|
||
|
|
.gitattributes
|
||
|
|
|
||
|
|
# Build outputs
|
||
|
|
**/bin/
|
||
|
|
**/obj/
|
||
|
|
**/out/
|
||
|
|
|
||
|
|
# IDE and editor files
|
||
|
|
.vs/
|
||
|
|
.vscode/
|
||
|
|
.idea/
|
||
|
|
*.user
|
||
|
|
*.suo
|
||
|
|
*.userosscache
|
||
|
|
*.sln.docstates
|
||
|
|
|
||
|
|
# Test results
|
||
|
|
**/TestResults/
|
||
|
|
**/coverage/
|
||
|
|
|
||
|
|
# NuGet
|
||
|
|
**/packages/
|
||
|
|
|
||
|
|
# Documentation
|
||
|
|
*.md
|
||
|
|
!README.md
|
||
|
|
|
||
|
|
# Docker files (don't need to copy these into the image)
|
||
|
|
docker-compose*.yml
|
||
|
|
Dockerfile*
|
||
|
|
.dockerignore
|
||
|
|
|
||
|
|
# Local settings (may contain secrets)
|
||
|
|
**/appsettings.Development.json
|
||
|
|
**/appsettings.Local.json
|
||
|
|
**/*.local.json
|
||
|
|
**/secrets.json
|
||
|
|
|
||
|
|
# Environment files
|
||
|
|
.env
|
||
|
|
.env.*
|
||
|
|
*.env
|
||
|
|
|
||
|
|
# Logs
|
||
|
|
**/logs/
|
||
|
|
**/*.log
|
||
|
|
|
||
|
|
# Temporary files
|
||
|
|
**/tmp/
|
||
|
|
**/temp/
|
||
|
|
|
||
|
|
# OS files
|
||
|
|
.DS_Store
|
||
|
|
Thumbs.db
|
||
|
|
|
||
|
|
# Tests (not needed in production image)
|
||
|
|
tests/
|